This is a SvelteKit project which makes a simple blog style site, with posts, topics, and pages. It makes use of the SvelteKit static adapter to build highly performant static HTML, CSS, and JS files. The content for posts can be markdown (.md) files which are parsed into HTML via the mdsvex utility.
Clone Repo
git clone https://github.com/MosDeAtmo/sveltekit-mdblog-static.git
Install
npm install
Edit Config
Edit the /src/lib/config.js
file. This file controls the global config of the site such as site name, description, the number of posts to display per page, the main and footer nav menus, and allows you to specify a Google Analytics ID.
Use markdown (.md) files in the /src/lib/posts
directory. Place any images in the /src/lib/assets/images/posts
directory, or use your own location such as a CDN.
Use the markdown image syntax )
to insert images. These get the Svelte enhanced images treatment at build time to improve perforamce.
Frontmatter:
Each post can have frontmatter which are meta attributes related to the post. This should appear at the top of each post between ---
as below.
---
active: true/false
title: "A Post With An Image Of A Tiny Tree"
date: "2025-03-18"
categories:
- "interesting-things"
excerpt: "This post has a beautiful photo of a tiny tree."
---
Changes styles in the app.css file. This project uses Tailwind CSS v4.
npm run build
This builds the static HTML, CSS, JS files ready to be served to visitors.
You can deploy to any host which supports static HTML, CSS, JS files.
This project took inspiration from both Josh Collinsworth's sveltekit-blog-starter and Guandor's minimalistic-sveltekit-blog fork. The major changes I've made are listed below.
prerender = "auto"
in case you don't want a static build.