{% extends "index.html" %}

{% block content %}
  <main class="w3-container w3-margin-mobile">
    <div class="page w3-container w3-content w3-padding-64">
      {{ section.content | safe }}
    </div>

    {% if section.extra.list_pages %}
    <hr>
      <h2>PAGES</h2>
      {% for article in section.pages %}
      <a href="{{ article.permalink }}"><h3>{{ article.title }}</h3></a>
      {% endfor %}
    {% endif %}

    {% if section.extra.list_subsections %}
    <hr>
      <h2>SUBSECTIONS</h2>
      {% for section in section.subsections %}
      {% set section = get_section(path=section, metadata_only=true) %}
      <a href="{{ section.permalink }}"><h3>{{ section.title }}</h3></a>
      {% endfor %}
    {% endif %}

  </main>
{% endblock content %}