Welcome to My Eleventy Blog
This is a static site blog built with Eleventy (11ty), a simpler static site generator. This post provides an overview of the project structure and how to work with it.
Project Structure
project/
βββ .github/workflows/ # GitHub Actions workflows
βββ src/ # Source files
β βββ _data/ # Site data files
β βββ _includes/ # Template parts/components
β βββ _layouts/ # Page layouts
β βββ css/ # Stylesheets
β βββ posts/ # Blog posts (markdown)
βββ .eleventy.js # Eleventy configuration
βββ package.json # Project dependencies
Working with This Blog
Creating New Posts
To create a new post:
- Add a new Markdown file to the
src/posts/
directory - Include frontmatter at the top of the file:
---
title: Your Post Title
date: YYYY-MM-DD
tags:
- tag1
- tag2
description: Brief description of your post
layout: post.njk
---
Local Development
Run these commands in your terminal:
npm install
- Install dependenciesnpm start
- Start development servernpm run build
- Build for production
Deployment
The blog is automatically deployed to GitHub Pages when changes are pushed to the main branch. The GitHub Actions workflow:
- Checks out the code
- Installs dependencies
- Builds the site
- Deploys to the gh-pages branch
Customization
- Edit site metadata in
src/_data/metadata.json
- Modify layouts in
src/_layouts/
- Update styling in
src/css/style.css
Key Features
- Responsive design
- Tag-based navigation
- Code syntax highlighting
- Markdown support with various plugins
Happy blogging with Eleventy!