{% extends "base.html" %} {% block content %} {%- if section -%} {%- if not section.extra.hide_title -%}

{{- section.title -}}

{%- if section.extra.subtitle -%}

{{- section.extra.subtitle -}}

{%- endif -%} {%- endif -%} {{- section.content | safe -}} {% for sect in section.subsections %} {%- set sect = get_section(path=sect) %}

{{ sect.title }}

{{ sect.extra.subtitle }}

{%- if sect.extra.button -%} {%- endif -%}
{{- sect.content | split(pat="") | first | safe -}}
{% if not loop.last %}
{% endif %} {% endfor -%} {%- endif -%} {% endblock content %}