This is a sample blog post. Replace this content with your own writing.

Introduction

Eleventy (11ty) is a simple static site generator that focuses on speed and flexibility. Unlike many other SSGs, it doesn't impose a specific framework or structure, giving you the freedom to build exactly what you need.

Why Eleventy?

  • Fast builds - Generates static HTML in milliseconds
  • Flexible - Supports multiple template languages (Nunjucks, Markdown, HTML, etc.)
  • Simple - No complex configuration required to get started
  • Powerful - Can handle complex sites with collections, filters, and plugins

Getting Started

npm init -y
npm install @11ty/eleventy

Create your first template and run the build:

npx @11ty/eleventy

Conclusion

Eleventy is a great choice for personal websites, blogs, and documentation. Give it a try!