A minimal dev blog built with Eleventy.
/feed.xml# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
Create a new .md file in src/posts/:
---
title: My New Post
description: A brief description for the post list
date: 2024-12-01
---
Your content here...
Posts are automatically sorted by date (newest first) and added to the RSS feed.
src/
├── _data/
│ └── site.json # Site metadata
├── _includes/
│ ├── base.njk # Base HTML layout
│ └── post.njk # Blog post layout
├── css/
│ └── style.css # All styles
├── posts/
│ └── *.md # Blog posts
└── index.njk # Homepage
MIT