view tests/bakes/test_variant.yaml @ 976:b9374b3682f0

pagination: Prevent a possible crash when paginating things without a current page. This is mostly for unit testing.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 17 Oct 2017 01:09:55 -0700
parents 72f17534d58e
children 45ad976712ec
line wrap: on
line source

---
config:
    what: not good
config_variants: [test]
in:
    pages/_index.md: 'This is {{what}}.'
    configs/test.yml: 'what: awesome'
out:
    index.html: 'This is awesome.'
---
config:
    what: not good
config_values:
    what: awesome
in:
    pages/_index.md: 'This is {{what}}.'
out:
    index.html: 'This is awesome.'