← All posts

static site generators

Why Static Sites Are the Future of Personal Publishing

· 1 min read · base31.org

For years, Content Management Systems (CMS) like WordPress dominated web publishing. But for personal blogs and portfolios, a simpler, faster alternative has taken over: the Static Site Generator (SSG).

The database bottleneck

A traditional CMS requires a database and a server. Every time someone visits your site, the server runs code, queries the database, stitches the page together, and sends it to the browser. This takes time and computing power.

Enter the SSG

A Static Site Generator works differently. It takes your raw content (usually Markdown files) and templates, and builds the entire website into basic HTML files ahead of time. When a user visits, the server just hands them the ready-made file.

Why static sites win

Developer joy

Tools like Eleventy, Hugo, and Astro have made building static sites an incredibly fun, flexible, and rewarding experience for developers and writers alike.