Live data from Hacker News

Ask HN: What's a good static site generator to use for a blog in 2018?

news.ycombinator.com

81–90 of 129 posts

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#81
post #52

Well, this thread got nuked didn't it? From first page to page 5 in under a few hours...

Right? I didn't expect it at all. It's my first (maybe?) post here and it just blew up. Love all the suggestions though. Quite a lot of them were immensely useful! :)

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#82

I don’t know the right answer for you (probably depends on the language you know best or want to learn) but the “standard” is Jekyll in terms of maturity and acceptance.

Yeah, that's the thing. I primarily work on Django so Hugo or Pelican make sense to me. I did give Jekyll a whirl but I wasn't overly fond of it. I'll have to read through the docs and then decide if it's right for me. Thank you! :)

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#83
post #5

This is likely to be an unpopular answer, but the best choice is probably WordPress. I just used it to generate a network of about 40 static sites because (1) it has literally thousands of beautiful, professionally-developed themes for free; (2) same goes for plugins; (3) it's easy to hack if need be; and (4) it probably has one of the easiest-to-use and most-complete content editors, capable of creating both pages a…

I also recommend Wordpress with HardyPress. You can use Wordpress to create content more elegantly than with static plain files, and you can use HardyPress to make the result a fully static site. I've been running my own blogs / portfolio in the last decade on static sites, from now now I'm using this new combo. Why? With the advent of the headless CMS scene static site generators just lost their unique advantage to…

Will check out HardyPress. Thanks! It might make things easier if I end up with WordPress. Wasn't aware of it :)

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#84

I use Hugo [0] as a static website generator. They have plenty of themes [1] to choose from. You can still adjust it with basic knowledge in HTML/CSS. Afterward you can chose where to host it. You can use Github Pages [2] for free or pay for a service like DigitalOcean (starting with 5€ a month which scales well) [3]. I wrote a technical cheatsheet [4] on how to setup your own website with these ingredients. - [0] ht…

Thanks for the last link. It will surely be helpful :D Hugo seems to be the winner for now.

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#85

Hugo is, IMHO, one of the best, most versatile options out there for an SSG. I've been using it since v0.15 (now at 0.37). I use it for a simple, mostly text, blog ( https://kar.ai ). I also use it for an image-heavy company site ( https://www.stonelandinc.com ). I also use it for 20+ other sites for clients. It's undergoing heavy development, so that may be a pro or con, depending. e.g. Recently they added image pro…

That's quite some praise there. Definitely reinforces the suggestions others have made as well. 20+ sites is a lot, wow :O

I do not think the blog is going to be too image heavy as I'd like to keep it simple for now but it's definitely a plus to have. Thank you! :)

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#86
post #42

Previous discussion about almost exactly the same topic from 17 days ago: https://news.ycombinator.com/item?id=16346187 (89 comments)

Sorry about that. Doesn't seem like Hn has an option to search, or does it? I don't really frequent the Ask HN section so I wasn't aware. Thank you for the link though. Found some interesting info there :)

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#87

- Hugo - Travis CI - Cloudflare - GitHub Pages This is how I host my website completely for free with SSL. Whenever I commit it to GitHub it will build and deploy it for me.

Interesting. I've always wanted to give CI a shot. This could be a good start to explore it. What role does cloudflare play here? Just curious as I don't know what it's capable of doing. I might end up adopting the same system as well since everyone here has been raving about Hugo. Thank you for the suggestions!

Cloudflare provides free SSL because the github pages are directing to a custom domain therefore there github cannot provide with SSL.

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#88

What counts as "good enough" is such a subjective thing. What works for you will be some function of your needs and technical proficiency. It seems as though you don't have any specific needs, so any of the popular SSGs will be good enough for you. Pick one written in a language you already know, or pick one in a language you would like to learn. Some of the first Ruby code I wrote was a Jekyll plugin that I crudely…

You're right about the subjectivity. Mainly why I asked everyone about their opinions and experiences so that I could make a decision based on that.

I'm not familiar with Ruby at all as I primarily work on Django. Go has always been on my todo list so I'm mostly leaning towards that for now.

Thank you for the link! I can have a good look at all the available options :D

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#89
post #6

The best choices currently I think are: -- Ghost (expensive but dead simple to apply themes) or -- Hugo + Netflify (for hosting and automatically publishing your site when you push to your repo) + Forestry.io (for a nice front end to edit your posts if you want to avoid the command line) I care about Markdown plus MathJax support (for math notation) and both these options support that.

Ghost seems to be a bit expensive for my taste. Especially if you weigh it in my currency (INR). I'll consider it once I have my VPS set up but I'm leaning towards Hugo for now. Netlify is amazing :D

Thank you for Forestry though! Didn't know about it. Will definitely come in handy when I can't get to my personal laptop.

Re: Ask HN: What's a good static site generator to use for a blog in 2018?

#90

Hugo is, IMHO, one of the best, most versatile options out there for an SSG. I've been using it since v0.15 (now at 0.37). I use it for a simple, mostly text, blog ( https://kar.ai ). I also use it for an image-heavy company site ( https://www.stonelandinc.com ). I also use it for 20+ other sites for clients. It's undergoing heavy development, so that may be a pro or con, depending. e.g. Recently they added image pro…

You have been using it for a long time, right? Have you found any issues in the case when you previously successfully generated a site using an older version, but then install a newer version in a different machine, and you try to generate the site with the "old" source?

That unfortunately has happened to me with other static site generators (breaking changes between versions with no automatic way to resolve them or thorough documentation on the changes to make to the source).

Post reply on HN