Live data from Hacker News

Ask HN: Best static site generator for non-designer?

news.ycombinator.com

1–10 of 26 posts

Ask HN: Best static site generator for non-designer?

#1
I'd like to take a shot at creating my own portfolio page using a static site generator. However, all of my experience is working in languages like Go/Python with little to no experience in frontend design. But, at the same time, I don't mind learning something new!

The problem is I have no design skills and very little motivation to spend an excessive amount of time learning things like CSS. Is there a modern equivalent of pretty Lego blocks that I can use to put together something that might look nice?

Re: Ask HN: Best static site generator for non-designer?

#3
I use MakeDocs with Material theme as most of my websites are for documentation. It all depends on what sort of website you want and for what audience. Go to the static website generator sites, look at how you install it, how to specify a theme, and how you tweek it, what themes there are and pick one. As most website generators use Markdown its relatively easy to switch from one generator to another if necessary.

Re: Ask HN: Best static site generator for non-designer?

#4
I'd personally use hugo[1] with the "blonde"[2] theme these days. Some time ago I wrote a tutorial[3] about getting hugo to work with a specific theme and making it NOT look like everything else, but unfortunately it still lacks dark mode.

Maybe I'll give hugo's "blonde" theme a shot in the future, because it integrates dark mode pretty well.

1: https://gohugo.io/

2: https://themes.gohugo.io/themes/blonde/

3: https://pilabor.com/blog/2021/05/building-a-blog-with-hugo/

Re: Ask HN: Best static site generator for non-designer?

#6
My vote goes to Astro.build, a pretty new but very solid tool that seems to fit your needs well. It's Javascript but nothing extra-challenging and the docs are awesome.

- Pick a theme: https://astro.build/themes/ - Pick where to deploy: https://docs.astro.build/en/guides/deploy/ - write your content in markdown or JSX templates (very easy to learn if you're new to it)

Re: Ask HN: Best static site generator for non-designer?

#7
For my tiliaradix.com [0] I use Hugo [1] with the mini theme [2]. The domain is mine and points to a github pages repo, so I get HTTPS with it too.

I think the theme is pretty clean and lean and is kinda enough for me that also don't want to mess around with css and styling. And the blog is something basically no-one would find or read unless they are getting involved with me as freelancer (embedded wireless).

[0][https://tiliaradix.com/] [1][https://gohugo.io/] [2][https://github.com/nodejh/hugo-theme-mini]

Re: Ask HN: Best static site generator for non-designer?

#9
Yes, I would suggest you don’t pick a generator but look for themes in Hugo, Jekyll, Pelican etc. that you really like. And from there you’ve fallen into a generator and you can customise the theme a little to your needs.

Here is the source code to my own website (in Hugo) if it’s helpful: https://github.com/hnarayanan/harishnarayanan.org

Re: Ask HN: Best static site generator for non-designer?

#10
I can't answer your question, because I don't know about such an HTML framework, but Django-distill (https://django-distill.com) is a fantastic SSG. You just write whatever Django you want, and then it compiles that into a static site.

Much more flexible to just write your own code than trying to configure Hugo or Jekyll.

Post reply on HN