├── robots.txt ├── index.hbs ├── partials ├── content-header.hbs ├── tags.hbs ├── loop.hbs ├── footer.hbs ├── welcome-mat.hbs ├── main-header.hbs ├── subscribe-widget.hbs ├── author-info.hbs └── post-teaser.hbs ├── routes.yaml ├── page.hbs ├── members ├── signin.hbs ├── signup.hbs └── account.hbs ├── tag.hbs ├── LICENSE ├── post.hbs ├── package.json ├── author.hbs ├── README.md ├── default.hbs └── assets └── css └── main.css /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: GPTBot 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /index.hbs: -------------------------------------------------------------------------------- 1 | {{!< default}} 2 | 3 | {{>welcome-mat}} 4 | 5 | {{>main-header}} 6 | 7 |
8 | {{!-- The tag below includes the post loop - partials/loop.hbs --}} 9 | {{> "loop"}} 10 |
11 | -------------------------------------------------------------------------------- /partials/content-header.hbs: -------------------------------------------------------------------------------- 1 | {{! 2 | For now, this just includes the main-header partial. But having it set up 3 | this way lets us to switch to a hero-image or other garish header on the 4 | homepage in the future, while keeping the modest header elsewhere. 5 | }} 6 | {{>main-header}} 7 | -------------------------------------------------------------------------------- /routes.yaml: -------------------------------------------------------------------------------- 1 | routes: 2 | /signin/: members/signin 3 | /signup/: members/signup 4 | /login/: members/signin 5 | /account/: members/account 6 | 7 | collections: 8 | /: 9 | permalink: /{slug}/ 10 | template: 11 | - index 12 | 13 | taxonomies: 14 | tag: /tag/{slug}/ 15 | author: /author/{slug}/ 16 | -------------------------------------------------------------------------------- /partials/tags.hbs: -------------------------------------------------------------------------------- 1 | {{#get "tags" include="count.posts" order="count.posts asc"}} 2 |