{# index.html #} {% import "macros.html" as macros %} {% if term or taxonomy %} {% set this = term | default(value=taxonomy) %} {{ this.name }} - {% elif page or section %} {% set this = page | default(value=section) %} {% set len = this.components | length %} {%- if len > 0 %} {{ this.title }} - {% endif -%} {% endif %} {{ config.title }}
{% block content %}

{{ section.title | safe }}

{{ section.description | default(value="") | markdown(inline=true) | safe }}

{{ section.content | safe }} {% endblock content %}