Mercurial > piecrust2
view tests/servings/test_debug_info.yaml @ 912:cd236a6af9f6
data: Add access to route metadata in the templating data.
It's available under `route`.
Also, rename `slug` to `rel_url`, because it's confusing when `slug` could
be the route metadata of the same name as provided by the default page source.
The old `slug` is still there for backwards compatibility though.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 28 Apr 2017 10:05:14 -0700 |
parents | e7fb848fd55d |
children | 45ad976712ec |
line wrap: on
line source
--- url: /foo in: pages/foo.md: | BLAH {{piecrust.debug_info}} out: BLAH --- url: /foo?!debug in: pages/foo.md: | BLAH {{piecrust.debug_info}} out_contains: | BLAH <div id="piecrust-debug-window" --- url: /foo in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar.html --- url: /foo?!debug in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar.html?!debug --- url: /foo config: site: pretty_urls: true in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar --- url: /foo?!debug config: site: pretty_urls: true in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar?!debug