For my website I have a custom python script, and I use RestructuredText for markup. If I started now, I would replace the script with a set of Makefiles... or better use any existing generator.
Static Website Generators
71–80 of 241 posts
Re: Static Website Generators
#72What are people using for hosting? I've thought about using github pages, but css ended up being severely limited.
I have a CloudFront distribution sitting in front of S3, secured with a free SSL certificate powered by Amazon ACM.
I like S3 for its flexibility. My site is in both English and Dutch and I want to serve English content on .io and the Dutch content on .nl. With S3 I just create two buckets, associate the bucket with a different domain and welcome page (index_en.html and index_nl.html) and publish the same site to each bucket.
Re: Static Website Generators
#73I write my documents in markdown and add this tag at the end of my document
I "publish it" by copying it to my server and renaming it .html
* note: To get started, here is the suggested starter document: https://casual-effects.com/markdeep/starter.md.html
Re: Static Website Generators
#74here is a better "article" https://staticsitegenerators.net/
Re: Static Website Generators
#75Re: Static Website Generators
#76Sort of related and shameless plug but I'm building a "comments as a service" application that isn't disqus. My first target market is static sites. Check it out here: http://www.remarkbox.com
Re: Static Website Generators
#77What are people using for hosting? I've thought about using github pages, but css ended up being severely limited.
Re: Static Website Generators
#78Sort of related and shameless plug but I'm building a "comments as a service" application that isn't disqus. My first target market is static sites. Check it out here: http://www.remarkbox.com
* https://github.com/skx/e-comments/
Seems mine is more basic than yours, due to lack of registration and lack of threading though.
Re: Static Website Generators
#79I use Hugo for several websites and I enjoy it a lot. One favorite part is the ability to create content of different types.
This statement caught my attention in the article: > It is optimized for speed (Hugo sites can be built in milliseconds) Is that true, or does it just happen to be fast? It seems to me that the performance of a static site generation is irrelevant, and thus time spent on this is really wasted effort. I don't care if it takes several minutes to build.. it'll happen on the CI server in the background, and so long as th…
In every respect, Hugo is a really good site generator (not just a static blog engine), but this is the feature that makes the competition near-irrelevant to me.
Re: Static Website Generators
#80To me, using a static site generator and handing off database to another service like firebase or other sas, although works really well and has many benefits is still an external dependency I would rather live without. It also somewhat defeats the point of using a statit site gen for my use case anyway.
This is the main thing stopping me from switching from php/mysql.