Mercurial > piecrust2
view docs/templates/inc/family-sidebar.html @ 924:1bb704434ee2
formatting: Remove segment parts, you can use template tags instead.
Segment parts were used to switch formatters insides a given content segment,
but that's also achievable with template tags like `pcformat` in Jinja to
some degree. It's not totally the same but removing it simplifies the code
and improves performance.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 01 Oct 2017 20:36:04 -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>