Skip to content
Snippets Groups Projects
section.html 770 B
Newer Older
Hugo Trentesaux's avatar
Hugo Trentesaux committed
{% extends "index.html" %}

{% block content %}
  <main class="w3-container w3-margin-mobile">
    <div class="page w3-container w3-content w3-padding-64">
Hugo Trentesaux's avatar
Hugo Trentesaux committed
      {{ section.content | safe }}
    </div>
Hugo Trentesaux's avatar
Hugo Trentesaux committed
    {% if not section.extra.list_pages %}
Hugo Trentesaux's avatar
Hugo Trentesaux committed
    <hr>
      <h2>PAGES</h2>
      {% for article in section.pages %}
      <a href="{{ article.permalink }}"><h3>{{ article.title }}</h3></a>
      {% endfor %}
    {% endif %}
Hugo Trentesaux's avatar
Hugo Trentesaux committed
    {% if not 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 %}
Hugo Trentesaux's avatar
Hugo Trentesaux committed

  </main>
{% endblock content %}