book-example/templates/index.html

30 lines
614 B
HTML

{% extends "base.html" %}
{% block content %}
{% for section in section.subsections %}
{% set section_data=get_section(path=section) %}
{# uncomment the next <details> tag by removing the surrounding tags to
display some debug context #}
{#
<details>
<summary>section_data</summary>
<pre>{{ section_data | json_encode(pretty=true) | safe }}</pre>
</details>
{# #}
{% for page in section_data.pages %}
{% include "chapter.html" %}
<hr />
{% endfor %}
{% endfor %}
{% endblock %}
{% block footer %}
{% include "footer.html" %}
{% endblock %}