11Blog is an open-source, self-hosted blogging platform built with the static site generator 11ty.
- Simplicity and Speed: Designed to be easy to set up and incredibly fast for end-users.
- Customization: Offers a range of customization options to make your blog truly yours.
- Markdown-based: Write your posts in Markdown for easy formatting and publishing.
- Static Site Generation: Enjoy the security and speed of a purely static site that can be hosted anywhere.
- SEO Friendly: Comes with SEO best practices out of the box.
-
Clone the repository
git clone https://github.com/CloudCannon/11blog.git cd 11blog
-
Install dependencies
npm install
-
Write your posts
Posts are written in Markdown and stored in
./src/_posts/
. Simply add your Markdown files here, and they'll be processed into blog posts.--- title: "My First Post" date: "2024-01-01" --- Welcome to my first post on 11Blog!
-
Build
To build your blog:
npx @11ty/eleventy
To build and serve locally:
npx @11ty/eleventy --serve
-
Deploy
Deploy your blog to your preferred static site hosting provider. Many offer automated deployment processes:
- 11ty Documentation - Learn more about how to use 11ty to its full potential.
- Markdown Guide - Get familiar with Markdown formatting for your posts.
We're always looking for contributors to help improve 11Blog. Whether you're interested in adding new features, fixing bugs, or improving documentation, your contributions are welcome. Please feel free to submit an issue or pull request.
11Blog is open source and made available under the MIT License.