├── .gitignore ├── src ├── blog │ ├── blog.11tydata.js │ ├── 2020-01-01-post-number-one.liquid │ ├── 2020-01-03-post-number-two.liquid │ ├── 2020-01-05-post-number-three.liquid │ ├── 2020-01-08-post-number-four.liquid │ ├── 2020-01-13-post-number-six.liquid │ ├── 2020-01-15-post-number-seven.liquid │ └── 2020-01-10-post-number-five.liquid ├── _includes │ └── blog-summary.liquid └── pages │ ├── index.liquid │ └── debug.liquid ├── www ├── 1 │ └── index.html ├── 2 │ └── index.html ├── blog │ ├── 2020-01-01-post-number-one │ │ └── index.html │ ├── 2020-01-03-post-number-two │ │ └── index.html │ ├── 2020-01-08-post-number-four │ │ └── index.html │ ├── 2020-01-05-post-number-three │ │ └── index.html │ ├── 2020-01-13-post-number-six │ │ └── index.html │ ├── 2020-01-15-post-number-seven │ │ └── index.html │ └── 2020-01-10-post-number-five │ │ └── index.html ├── index.html └── debug │ └── index.html ├── README.md ├── .eleventy.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/blog/blog.11tydata.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tags: ["blog"] 3 | }; 4 | -------------------------------------------------------------------------------- /src/_includes/blog-summary.liquid: -------------------------------------------------------------------------------- 1 |
This is my blog.
6 | 7 | 12 | -------------------------------------------------------------------------------- /www/blog/2020-01-03-post-number-two/index.html: -------------------------------------------------------------------------------- 1 |This is my blog.
6 | 7 | 12 | -------------------------------------------------------------------------------- /www/blog/2020-01-08-post-number-four/index.html: -------------------------------------------------------------------------------- 1 |This is my blog.
6 | 7 | 12 | -------------------------------------------------------------------------------- /www/blog/2020-01-05-post-number-three/index.html: -------------------------------------------------------------------------------- 1 |This is my blog.
6 | 7 | 12 | -------------------------------------------------------------------------------- /www/blog/2020-01-13-post-number-six/index.html: -------------------------------------------------------------------------------- 1 |This is my blog.
6 | 7 | 12 | -------------------------------------------------------------------------------- /www/blog/2020-01-15-post-number-seven/index.html: -------------------------------------------------------------------------------- 1 |This is my blog.
6 | 7 | 12 | -------------------------------------------------------------------------------- /src/blog/2020-01-01-post-number-one.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post number one 3 | author: Jane Doe 4 | tags: 5 | - liquidjs 6 | --- 7 | 8 |This is my blog.
13 | 14 | -------------------------------------------------------------------------------- /src/blog/2020-01-03-post-number-two.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post number two 3 | author: Jane Doe 4 | tags: 5 | - nunjucks 6 | --- 7 | 8 |This is my blog.
13 | 14 | -------------------------------------------------------------------------------- /www/2/index.html: -------------------------------------------------------------------------------- 1 |This is the Homepage.
2 |There are many like it, but this one is mine.
3 | 4 |This is my blog.
13 | 14 | -------------------------------------------------------------------------------- /src/blog/2020-01-08-post-number-four.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post number four 3 | author: Jane Doe 4 | tags: 5 | - graphql 6 | --- 7 | 8 |This is my blog.
13 | 14 | -------------------------------------------------------------------------------- /src/blog/2020-01-13-post-number-six.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post number six 3 | author: Janet Doe 4 | tags: 5 | - tailwindcss 6 | --- 7 | 8 |This is my blog.
13 | 14 | -------------------------------------------------------------------------------- /src/blog/2020-01-15-post-number-seven.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post number seven 3 | author: Janine Doe 4 | tags: 5 | - github-actions 6 | --- 7 | 8 |This is my blog.
13 | 14 | -------------------------------------------------------------------------------- /www/blog/2020-01-10-post-number-five/index.html: -------------------------------------------------------------------------------- 1 |6 | This is my blog. I have overwritten the content date. Instead of using the 7 | filename, it now uses a hardcoded date from the frontmatter. 8 |
9 | 10 | 15 | -------------------------------------------------------------------------------- /src/blog/2020-01-10-post-number-five.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post number five 3 | author: Janie Doe 4 | tags: 5 | - typescript 6 | date: 2020-01-15 7 | --- 8 | 9 |This is my blog. I have overwritten the content date. Instead of using the filename, it now uses a hardcoded date from the frontmatter.
14 | 15 | -------------------------------------------------------------------------------- /src/pages/index.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home 3 | pagination: 4 | data: collections.blogRecentByTags 5 | size: 3 6 | alias: posts 7 | permalink: "{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}{% endif %}/" 8 | --- 9 | 10 |This is the Homepage.
11 |There are many like it, but this one is mine.
12 | 13 |This is the Homepage.
2 |There are many like it, but this one is mine.
3 | 4 |This is the Homepage.
2 |There are many like it, but this one is mine.
3 | 4 |This is the Homepage.
7 |There are many like it, but this one is mine.
8 | 9 |This is the Homepage.
2 |There are many like it, but this one is mine.
3 | 4 |