Live data from Hacker News

Static Website Generators

netlify.com

61–70 of 241 posts

Re: Static Website Generators

#61
post #51
post #47

Nobody's mentioned Hexo yet (edit: here), so I will. A while back I reviewed the top 5-6 Node-based SSGs and hexo seemed like the best tradeoff between simple and flexible. https://hexo.io/ I also wrote up all the stuff I learned migrating and existing Wordpress blog to static: http://aphall.com/2016/01/migrating-wordpress-to-static/

> Nobody's mentioned Hexo yet Hexo is #2 in the list in the article...?

Sorry, I meant commented on their experiences with it.

Re: Static Website Generators

#62
post #25

Sort 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

Since we're shameless pluggin', I have a Jekyll plugin that will display an image gallery from a folder (with a single liquid tag). https://github.com/callmeed/jekyll-image-set

No online sample or demo?

Re: Static Website Generators

#63

What are people using for hosting? I've thought about using github pages, but css ended up being severely limited.

I rsync mine to the smallest size of google cloud instance, in order to have control over nginx config and whatnot. It runs me about $4.50/month.

Re: Static Website Generators

#65
post #4

is there an ssg that is entirely web based? I don't want local files or to use a terminal. I would move away from Wordpress (and would like to) if something let me click a few buttons to set up a simple blog. I don't need anything fancy.. Let me make some basic choices and post my blogs.

I've used prose [0] with a few clients. Its just a web interface for messing with Jekyll, hosted on GitHub. So you might have to upload the Jekyll site to GitHub once, but after that you can edit it as you like.

It also adds some configuration that you can add to Jekyll's config, letting you decide how each menu in the admin console should appear. [1]

[0] http://prose.io/

[1] https://github.com/shakna-israel/haddonRevamp/blob/gh-pages/...

Re: Static Website Generators

#66
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.

Re: Static Website Generators

#67
post #15

I've wanted to make a static site generator generator for a while. Run the script and out comes another script with a wicked cool name that uses one of the many markup options, header formats, and templating engines (either manually or randomly selected). Somebody, please make this.

Haha. I did this with kung fu styles, wrote a little script that chooses a name, theme, and logo description. It'd be funny to see one for static site generators.

Re: Static Website Generators

#68

I have been eyeing Lektor[1] for a little while, it seems to have good documentation, and an interesting, opinionated dev behind it. 1: https://www.getlektor.com/

What is the benefit of lektor over nikola and pelican?

Lektor is based on a flat file ORM so you can structure your data as you like.

Re: Static Website Generators

#69
post #66

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.

Hugo supports rst, for what it's worth. There's still time to make the jump :)

Re: Static Website Generators

#70
post #46

I just use emacs + org mode -> org-publish to generate my site [1] from org-mode with some customizations; it's been the most flexible and fun way to build a site I've had across all my attempts so far, particularly given that I can go meta and also publish the htmlized raw org files at the same time [2]. [1] Publishing config: http://explog.in/config.html [2] Org Source: http://explog.in/config.org.html

Ha, that's timely. I started writing an online tutorial just today and settled on org-mode. Reading your config is immensely helpful. Thanks!
Post reply on HN