view tests/servings/test_theme_site.yaml @ 711:ab5c6a8ae90a

bake: Replace hard-coded taxonomy support with "generator" system. * Taxonomies are now implemented one or more `TaxonomyGenerator`s. * A `BlogArchivesGenerator` stub is there but non-functional.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 26 May 2016 19:52:47 -0700
parents 3df808b133f8
children 45ad976712ec
line wrap: on
line source

---
url: /foo.html
theme_config:
    site:
        title: "Some Test Theme"
in:
    pages/foo.md: "This is: {{site.title}}"
out: "This is: Some Test Theme"
---
url: /foo.html
theme_config:
    site:
        title: "Some Test Theme"
in:
    pages/foo.md: "This is: {{foo}}"
    configs/theme_preview.yml: "foo: bar"
out: "This is: bar"