{% for chapter in cover_page.children %} {% if chapter.title in ["Front Matter", "Back Matter"] %} {% for content in chapter.children %} {% if content.title not in ["TitlePage", "InfoPage", "Table of Contents"] %}
  • {{ content.title }}

  • {% endif %} {% endfor %} {% else %}
  • {{ chapter.title }}

    {% if chapter.children %}
      {% for content in chapter.children %}
    • {{ content.title }}
    • {% endfor %}
    {% endif %}
  • {% endif %} {% endfor %}