{% set current_section = get_section(path="_index.md") %}
{{ config.title }}
{% block subtitle %}{{ current_section.title }}{% endblock %}
{% block menu %} {% for s in current_section.subsections %} {% set subsection = get_section(path=s) %}
{{ subsection.title }}
{% endfor %} {% endblock %}
{% block nav %} {% if section.pages %}
{% for post in section.pages %}
{{ post.title }}
{% endfor %}
{% endif %} {% endblock %}
{% block content%}{% endblock %}