Hacker News new | ask | show | jobs
by kaycey2022 1106 days ago
What stack is this blog using? It looks like plain HTML/CSS/JS. It's very nice.

I'm asking because the choice of stack to use is keeping me away from starting my own blog.

2 comments

Is 11ty with this theme:

https://github.com/arpitbatra123/eleventy-blog-mnml

Choice of stack also kept me away so I decided to just keep it simple!

11ty is pretty close to html/css, but it has the niceties of being able to reuse html where you want.

I recommend to start without a theme, Just make a html file named layout and add {{ content }} And then an md file and put on the top matter layout: <name-of-your-layout>

It’s really all is needed and it’s good to understand how it works (as opposed to jekyll or hugo that I couldn’t figure out because they have a bunch of undocumented assumptions and requirements…)

This is very nice. Thanks for the recommendation.