minimum-viable-hugo

No CSS, no JS. One static HTML page to start you off. (by Siilikuin)

Minimum-viable-hugo Alternatives

Similar projects and alternatives to minimum-viable-hugo

  1. obsidian-releases

    Community plugins list, theme list, and releases of Obsidian.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. SvelteKit

    web development, streamlined (by sveltejs)

  4. astro

    599 minimum-viable-hugo VS astro

    The web framework for content-driven websites. ⭐️ Star to support our work!

  5. Hugo

    The world’s fastest framework for building websites.

  6. TiddlyWiki

    A self-contained JavaScript wiki for the browser, Node.js, AWS Lambda etc.

  7. Jekyll

    :globe_with_meridians: Jekyll is a blog-aware static site generator in Ruby

  8. eleventy πŸ•šβš‘οΈ

    A simpler site generator. Transforms a directory of templates (of varying types) into HTML.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. jamstack.org

    The official Jamstack site

  11. gutenberg

    A fast static site generator in a single binary with everything built-in. https://www.getzola.org

  12. Publii

    The most intuitive Static Site CMS designed for SEO-optimized and privacy-focused websites.

  13. decap-cms

    A Git-based CMS for Static Site Generators

  14. quartz

    🌱 a fast, batteries-included static-site generator that transforms Markdown content into fully functional websites

  15. mataroa

    naked blogging platform

  16. Hexo

    29 minimum-viable-hugo VS Hexo

    A fast, simple & powerful blog framework, powered by Node.js.

  17. Lektor

    The lektor static file content management system

  18. lume

    16 minimum-viable-hugo VS lume

    πŸ”₯ Static site generator for Deno πŸ¦• (by lumeland)

  19. cmark

    CommonMark parsing and rendering library and program in C

  20. site-gen-ocaml

    Static Site generator, this time in OCaml

  21. hakyll

    A static website compiler library in Haskell

  22. homepage-dev

    Homepage for yboris.dev built with Hugo

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better minimum-viable-hugo alternative or higher similarity.

minimum-viable-hugo discussion

Log in or Post with

minimum-viable-hugo reviews and mentions

Posts with mentions or reviews of minimum-viable-hugo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-05.
  • Ask HN: What's your blog / portfolio stack?
    5 projects | news.ycombinator.com | 5 Mar 2025
    Hugo! I stick with Hugo for all things SSG these days. I like how it's a single binary, runs uber-fast, and compiles down to a nice clean set of HTML, CSS, and JS.

    My one mark against it is the learning curve is sharp. That's okay for me, since I plan to use it to the end of my days, and so I can amortize the cost of learning it once against many decades of productivity. I have an old GitHub page for people struggling to get to base camp on its learning curve: https://github.com/Siilikuin/minimum-viable-hugo

    And here are some sites I run in it:

    https://andrew-quinn.me/, my barebones personal blog.

    https://hiandrewquinn.github.io/til-site/, my much more frequently updated TILs. Think of this as halfway between a blog and Twitter.

    https://hiandrewquinn.github.io/selkouutiset-archive/, a daily updating news archive for the Simple Finnish broadcast, happily running since 2023. The pipeline for this one is interesting, since it uses not only Hugo but Git submodules under the hood. One Git repo exists purely to curl the page I'm watching every night, and I try to mess with that one as little as possible because messing up might mean a night goes unarchived. An intermediate one submodules repo #1 and cleans up the HTML to Hugo-friendly Markdown with pandoc and sed. The final one imports this slimmed down, Markdownified version directly into its content/ directory as a Git submodule and redeploys the whole shebang every night. So far we're up to over a thousand unique HTML pages and this refinery has continued to work with only minimal changes, because we've stuck with such reliable and slow-changing tooling.

  • WordPress Doesn't Matter for the Future of Web
    1 project | news.ycombinator.com | 14 Oct 2024
    Agreed. I much prefer to pitch Hugo on the basis of its costs: It takes more knowledge to set up, but it also lets you host your site for free on a ton of places, like GitHub Pages, and that knowledge can be a very useful stepping stone for future devs will are interested in getting more into the web dev space.

    That's why I wrote https://github.com/Siilikuin/minimum-viable-hugo way back when - to give myself just enough of a clue of what was going on that I could pick it up from there. Hugo makes an excellent stepping stone between "I know how to write HTML in Notepad" and "I can code up my own little web apps in Django", etc

  • Minimum Viable Hugo
    1 project | news.ycombinator.com | 27 Aug 2024
    1 project | /r/patient_hackernews | 27 Feb 2023
    1 project | /r/hackernews | 27 Feb 2023
  • Ask HN: What's the simplest static website generator?
    10 projects | news.ycombinator.com | 29 Mar 2024
    Hugo comes out of the box with headers and footers, but you'll probably want to grep around a bit before you understand them fully. I can still recommend my https://github.com/Siilikuin/minimum-viable-hugo as a decent way to get started with a "gears first" approach to Hugo, even though recent developments have made it a bit outdated (in a good way!).
  • Ask HN: Looking for lightweight personal blogging platform
    35 projects | news.ycombinator.com | 6 Feb 2024
    I like Hugo a lot, personally.

    If you want to go as minimal as possible, my https://github.com/Siilikuin/minimum-viable-hugo gets you set up with a single no-CSS, no-JS HTML page. I found this pretty ideal for staying to learn the platform.

  • Blogging Like a Hacker (2008)
    3 projects | news.ycombinator.com | 20 Dec 2023
    I like Hugo. It's been a gateway drug into building more interesting websites than just a blog for me. Giving you RSS feeds out of the box is a lovely bonus.

    Both my personal website https://andrew-quinn.me/ and my TIL site run on Hugo: https://hiandrewquinn.github.io/til-site/

    Most recently I used Hugo to create a backup archive of the Finnish broadcast news, plus translations, which was all in all very easy thanks to its i18n support: https://hiandrewquinn.github.io/selkouutiset-archive/

    I even gave a presentation at the local university to first year CS students who wanted to get Hugo up and running. It was a big success!

    I wrote https://github.com/Siilikuin/minimum-viable-hugo a while back to turn setting it up into a simple copy-and-paste operation. You might get some use out of it.

  • Course for Hugo SSG Incl. CSS and HTML-Templating
    1 project | news.ycombinator.com | 10 Jul 2023
    Hugo's documentation is rather awful hence explanations like https://github.com/Siilikuin/minimum-viable-hugo or https://dabase.com/e/04066/ I found this course to be a thorough explanation of the required templates, how to style etc. (where CSS and the whole frontend have stayed mysterious to me for years).
  • Minimum Viable Hugo – No CSS, no JavaScript, 1 static HTML page to start you off
    1 project | /r/hypeurls | 27 Feb 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 22 May 2025
    SaaSHub helps you find the best software and product alternatives Learn more β†’

Stats

Basic minimum-viable-hugo repo stats
12
196
4.4
over 1 year ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com