Mercurial > piecrust2
view docs/templates/inc/family-sidebar.html @ 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 | 61d53d2163d6 |
children | fd95fef51705 |
line wrap: on
line source
{% macro pagelink(title, url) -%} <a href="{{url}}"{% if url == page.url %} class="active"{% endif %}>{{title}}</a> {%- endmacro %} <ul class="doc-level1"> {% for p in family.root %} {% if p.is_dir and p.is_page %} <li>{{ pagelink(p.title, p.url) }} <ul class="doc-level2"> {% for p2 in p.children %} <li>{{ pagelink(p2.title, p2.url) }}</li> {% endfor %} </ul> </li> {% elif not p.is_dir and p.order %} <li>{{ pagelink(p.title, p.url) }}</li> {% endif %} {% endfor %} </ul>