{% from macros import embed %} {% extends base %} {% block postamble %} {% endblock %} {% block contents %}
{% for root in roots %} {% if root.name == 'controls' %} {{ embed(roots.controls) | indent(10) }} {% endif %} {% endfor %}
{% for root in roots %} {% if root.name == 'series' %} {{ embed(roots.series) | indent(10) }} {% endif %} {% endfor %}
{% for root in roots %} {% if root.name == 'figures' %} {{ embed(roots.figures) | indent(10) }} {% endif %} {% endfor %}
{% for doc in docs %} {% for root in doc.roots %} {% endfor %} {% endfor %} {% endblock %}