{% extends 'layout.html' %} {# recursively generate the pathbar segments for a given page #} {% macro pathbar_segments(page) -%} {% set current_page = page == this %} {%- if page.parent -%} {{ pathbar_segments(page.parent) }} {% endif %}
  • {% if not current_page %} {{ page.title }} {% else %} {{ page.title }} {% endif %}
  • {% endmacro %} {% block pathbar %}
    {% endblock %}