{% extends "base.html" %}

{% block page_title %}
{{section.title}} |
{% endblock page_title %}

{% block nav %}
<ul>
  <li><a href="{{ section.permalink | safe }}">./</a></li>
  {% for page in section.pages %}
  <li><a href="{{ page.permalink | safe }}">{{ page.slug }}/</a></li>
  {% endfor %}
</ul>
{% endblock nav %}

{% block content %}
<h1 class="title">
  {{ section.title }}
</h1>

{{ section.content | safe }}

{% endblock content %}