crisp-theme/README.md

23 lines
606 B
Markdown
Raw Permalink Normal View History

2025-04-17 09:10:08 -04:00
# Crisp Theme
This is a basic theme I use for my blog.
## Use
The 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:
```
npm install
npx @11ty\eleventy
```
2025-05-01 12:24:09 -04:00
Content 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.
2025-04-17 09:10:08 -04:00
You 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:
```yaml
series:
name: The Series Name
number: 1
```