Mercurial > piecrust2
view docs/templates/inc/family-sidebar.html @ 1184:386744f74c4b
admin: Allow selecting a scaffolding template.
Templates available to the prepare command are now also available in the
admin panel.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 21 May 2020 22:11:28 -0700 |
parents | fd95fef51705 |
children |
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.family.siblings %} {% if p.is_dir and p.is_page %} <li>{{ pagelink(p.title, p.url) }} <ul class="doc-level2"> {% for p2 in p.family.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>