Mercurial > piecrust2
view docs/templates/inc/family-sidebar.html @ 989:8adc27285d93
bake: Big pass on bake performance.
- Reduce the amount of data passed between processes.
- Make inter-process data simple objects to make it easier to test with
alternatives to pickle.
- Make sources have the basic requirement to be able to find a content item
from an item spec (path).
- Make Hoedown the default Markdown formatter.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 19 Nov 2017 14:29:17 -0800 |
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>