Mercurial > piecrust2
view tests/bakes/test_simple_categories.yaml @ 770:a7726e4862c4
admin: Fix API changes, don't crash the dashboard on non-binary WIP files.
Treat new/edited files that have no `auto_format` supported extension as
"miscellaneous" files, which are shown separately on the dashboard.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 02 Jul 2016 01:30:51 -0700 |
parents | 7705b3d981ca |
children | 45ad976712ec |
line wrap: on
line source
--- config: site: category_url: cat/%category% in: posts/2015-03-01_post01.md: | --- title: Post 01 category: foo --- posts/2015-03-02_post02.md: | --- title: Post 02 category: bar --- posts/2015-03-03_post03.md: | --- title: Post 03 category: foo --- pages/_category.md: | Pages in {{category}} {% for p in pagination.posts -%} {{p.title}} {% endfor %} pages/link.md: 'Link: {{pccaturl("bar")}}' pages/_index.md: '' out: index.html: '' '2015': '03': '01': post01.html: '' '02': post02.html: '' '03': post03.html: '' link.html: 'Link: /cat/bar.html' cat: foo.html: | Pages in foo Post 03 Post 01 bar.html: | Pages in bar Post 02