A clean, lightweight blog theme built with 11ty (Eleventy). Simple structure, minimal styling, and easy to customize.
git clone https://github.com/yourusername/your-repo-name.git
cd your-repo-name
npm install
npx @11ty/eleventy --serve
Site will run at:
http://localhost:8080
.
├── _includes/ # Layouts & partials
├── _data/ # Global site data
├── posts/ # Blog posts
├── css/ # Styles
├── js/ # Scripts
├── index.md # Homepage
├── archive.njk # Archive page
└── .eleventy.js # Eleventy config
Create a Markdown file inside posts/:
---
title: My New Post
date: 2026-03-01
tags: [blog]
---
Your content here...
You can customize:
css/style.css_includes/layout.njk_data/site.js.eleventy.jsnpx @11ty/eleventy
Output will be generated in the _site folder.
Works great with:
MIT License — feel free to use and modify.