I am using nikola: https://getnikola.com/ The main reason is, that I really like jupyter notebooks and my blog began as experiments in Jupyter that I wanted to somehow preserve, i.e. http://notes.asaleh.net/posts/monoid-pattern-in-python/ Second reason is, that I like to experiment with format of my posts quite often (several were made in org-mode, i.e: http://notes.asaleh.net/posts/experimenting-with-purescripts...…
Ask HN: What's a good static site generator to use for a blog in 2018?
111–120 of 129 posts
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#112Hugo is good, but you will need some technical expertise to customize it, unless you use a stock theme/template. GitHub pages is also a great way to get started quickly - Markdown is easy to learn and there are several cheat sheets out there. What I did in the end is created my own very simple site generator (calling it that is probably being over generous) - it lacks many features of a full-blown generator like Hugo…
Do you have your SSG up somewhere on GitHub? I'd like to give it a look. Seems to be a cool idea. Thank you for telling me about neocities. Wasn't aware of that!
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#113I built a JavaScript static site generator last year, works good for me. It uses github issues but makes it static. https://github.com/geekodour/gitpushblog
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#114Pelican (python) and Hugo were the ones I looked at before I decided to write my own toy SSG (python) for the heck of it. If you’re looking for something simple that you can build on, with support for Markdown, Jinja2 and static pages, take a look at https://github.com/amithmathew/pyjello If somebody wants to contribute, I’m happy to accept pull requests.
I'll check it out. Seems to be mature enough to give it a try. Thank you!
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#115In my experience, static site generators are not a complete solution. Unless you are satisfied with the default look and feel of generated pages (or a theme available), even Jekyll needs some tinkering, debugging and diving into the code. So, in case you need customizaton: just stick with any static site generator written in a familiar language and don't be afraid to fiddle with generation process.
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#116I use (and like) Lektor. It's very flexible and easy to get started with. Hugo was another contender, but I found it very hard to understand and work with, and it took some hacks to do a very simple thing I wanted, so I abandoned it quickly.
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#117Earlier quoted context omitted.
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?
#118Just use Getpublii https://getpublii.com Its really different than other generators - it's a static CMS with GUI and themes. Comes with WP migrator, GitHub pages, Netlify, S3, Google cloud or sftp.
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#119I'm using Hakyll, simply because I want a bit more exposure to Haskell. I've used Jekyll and Hugo in the past. Jekyll has lots of support but is slow for large sites. Hugo was alright. Only used it for a small project.
Re: Ask HN: What's a good static site generator to use for a blog in 2018?
#120I'm using Hakyll, simply because I want a bit more exposure to Haskell. I've used Jekyll and Hugo in the past. Jekyll has lots of support but is slow for large sites. Hugo was alright. Only used it for a small project.
Here is a tutorial on creating a static site with Hakyll and Github: https://begriffs.com/posts/2014-08-12-create-static-site-wit... EDIT: Tutorials about Hakyll: https://jaspervdj.be/hakyll/tutorials.html