Skip Navigation

Static site generator for an idiot who doesn't want to learn a new templating language just to have a blog?

Hi,

I'm interested in setting up a small static-site-generator site. Looked at 11ty recently and feel pretty uncomfortable with the amount of javascript and "funny language" churn just to make some html happen.

Do you know of any alternative that's simpler / easier / less complicated dependencies? Or do you have an approach to 11ty that you think I should try?

Thanks in advance for any input, it's appreciated!

62 comments
  • This might be what you're looking for: Zola

    Single binary that lets you keep your markdown/config in git and just build it from the git clone folder you're in at the time.

    I know some people that have moved off of Hugo to this, and Alex from the Selfhosted podcast recently talked about it on their show.

  • I found pelican to be quite simple to start with and depending on how deep you want to go it can be quite customizable. Being proficient in python helps.

  • Use Publii, it has a WYSIWYG editor, a block editor and a markdown editor. It creates the files on your PC and can upload it to your server. Just point your webserver to the uploaded folder.

    Very beginner friendly ☝🏻

  • I think mkdocs is easier than hugo but less flexible in terms of capability. However it serves all my needs (list of webpages accessible from a central frontpage)

  • I did try setting up 11ty, despite my misgivings over node.js. Using Markdown went OK, except it wouldn't render explicit

    <img>

    tag parameters to allow me to do one-off formatting.

    • What templating languages do you know already, and are you running 11ty v3? There are some gotchas around images because (I think) the eleventy-image plugin is enabled by default.

      I've found success running with .webc which is effectively HTML until you need it to be more.

      • Thank you for the advice! I'll give webc a look before I check out the alternative platforms.

        I don't know or really want to learn anything other than html/css or markdown. The site I'm trying to migrate was raw html/css, and I liked it well enough even though the shortcomings (and argument for template stuff) is very obvious.

  • I'm looking for something similar that I can host in blue host, but all there is, apparently, is WordPress (hell no), joomla and drupal, and these are certainly not static.

    • That's like the OG crew of web content haha. I used to be pretty big on Wordpress, but then two of my sites got compromised (through a plugin probably?), and of course the recent kerfluffle going on.

  • Codeberg Pages if you don't mind a give-or-take weekly 30 min downtime. GitHub Pages if you do. GitLab Pages if you have a creditcard which they require to verify your identity.

62 comments