15 lines
622 B
Plaintext
Raw Normal View History

2025-02-16 13:52:06 +01:00
{% from 'snippets/page-detail.jinja' import showDetail with context %}
{% from 'snippets/page-front.jinja' import pageFront with context %}
{% from 'snippets/page-circuit.jinja' import showCircuit with context %}
{%- macro showNestedPages(chapter, documents) -%}
{% if chapter['nested']%}
2025-03-01 16:38:05 +01:00
{% for nest in documents[chapter['nested']]|sort(attribute='order') %}
{% if "published" not in nest or nest["published"] is false %}
{{ showDetail(nest, chapter, true) }}
{{ showCircuit(nest) }}
{% endif %}
2025-02-16 13:52:06 +01:00
{% endfor %}
{% endif %}
{%- endmacro -%}