1# Crisp Theme
2
3This is a basic theme I use for my blog.
4
5## Use
6
7The only requirement for this project is Node.js. The shell.nix file will setup this up for you if you use the Nix shell. With Node.js installed:
8
9```
10npm install
11npx @11ty\eleventy
12```
13
14Content goes in the `content` folder. Anything with a `nav_order` property will be added to the site navigation. Blog posts go into the `content\blog` folder.
15
16You can indicate that a post is part of a series by giving it a `series` property with a name and the number of this post in the series:
17
18```yaml
19series:
20 name: The Series Name
21 number: 1
22```