Go to file
Crimson Tome dedfe878da
Update post.njk
2021-10-15 22:21:29 +01:00
.github Update node.js.yml 2021-10-15 21:55:09 +01:00
_data 11ty setup 2021-10-15 15:46:25 +01:00
_includes Update post.njk 2021-10-15 22:21:29 +01:00
about more config 2021-10-15 16:48:17 +01:00
css Initial commit 2021-10-15 15:18:44 +01:00
feed Update htaccess.njk 2021-10-15 22:20:40 +01:00
img Initial commit 2021-10-15 15:18:44 +01:00
posts added raspi blog 2021-10-15 18:24:19 +01:00
.editorconfig Initial commit 2021-10-15 15:18:44 +01:00
.eleventy.js Update .eleventy.js 2021-10-15 19:57:32 +01:00
.eleventyignore Initial commit 2021-10-15 15:18:44 +01:00
.gitignore added lockfile 2021-10-15 18:50:14 +01:00
.nojekyll Create .nojekyll 2021-10-15 21:06:33 +01:00
.nvmrc Initial commit 2021-10-15 15:18:44 +01:00
404.md config 2021-10-15 17:10:55 +01:00
LICENSE Initial commit 2021-10-15 15:18:44 +01:00
README.md Initial commit 2021-10-15 15:18:44 +01:00
archive.njk Update archive.njk 2021-10-15 22:19:34 +01:00
index.njk Update index.njk 2021-10-15 22:17:26 +01:00
netlify.toml Initial commit 2021-10-15 15:18:44 +01:00
package-lock.json more config 2021-10-15 19:15:48 +01:00
package.json Update package.json 2021-10-15 21:11:07 +01:00
page-list.njk Update page-list.njk 2021-10-15 22:20:08 +01:00
sitemap.xml.njk Update sitemap.xml.njk 2021-10-15 22:20:29 +01:00
tags-list.njk Update tags-list.njk 2021-10-15 22:20:18 +01:00
tags.njk Update tags.njk 2021-10-15 22:19:21 +01:00

README.md

eleventy-base-blog

A starter repository showing how to build a blog with the Eleventy static site generator.

Build Status

Demos

Deploy this to your own site

These builders are amazing—try them out to get your own Eleventy site in a few clicks!

Getting Started

1. Clone this Repository

git clone https://github.com/11ty/eleventy-base-blog.git my-blog-name

2. Navigate to the directory

cd my-blog-name

Specifically have a look at .eleventy.js to see if you want to configure any Eleventy options differently.

3. Install dependencies

npm install

4. Edit _data/metadata.json

5. Run Eleventy

npx eleventy

Or build and host locally for local development

npx eleventy --serve

Or build automatically when a template changes:

npx eleventy --watch

Or in debug mode:

DEBUG=* npx eleventy

Implementation Notes

  • about/index.md shows how to add a content page.
  • posts/ has the blog posts but really they can live in any directory. They need only the post tag to be added to this collection.
  • Add the nav tag to add a template to the top level site navigation. For example, this is in use on index.njk and about/index.md.
  • Content can be any template format (blog posts neednt be markdown, for example). Configure your supported templates in .eleventy.js -> templateFormats.
    • Because css and png are listed in templateFormats but are not supported template types, any files with these extensions will be copied without modification to the output (while keeping the same directory structure).
  • The blog post feed template is in feed/feed.njk. This is also a good example of using a global data files in that it uses _data/metadata.json.
  • This example uses three layouts:
    • _includes/layouts/base.njk: the top level HTML structure
    • _includes/layouts/home.njk: the home page template (wrapped into base.njk)
    • _includes/layouts/post.njk: the blog post template (wrapped into base.njk)
  • _includes/postlist.njk is a Nunjucks include and is a reusable component used to display a list of all the posts. index.njk has an example of how to use it.