{% extends "juice/templates/index.html" %} {% block hero %}

{{ section.title }}

{{ section.description }}

{% endblock hero %} {% block content %} {% endblock content %} {% block toc %} {% if section.toc %} {% set toc = section.toc %} {% elif page.toc %} {% set toc = page.toc %} {% endif %} {% if toc %}
{% for h in toc %} {% if h.children %} {% for h2 in h.children %}
- {{ h2.title }} {% if h2.children %} {% for h3 in h2.children %} {% endfor %} {% endif %}
{% endfor %} {% endif %} {% endfor %}
{% endif %} {% endblock toc %} {% block footer %} {% endblock footer %}