summaryrefslogtreecommitdiffstats
path: root/templates/section.html
blob: 3b82895b14c2a530fce4a9fee8b3e1bbe44400d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "index.html" %}

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

{% block nav %}
    <ul id="breadcrumbs">
        {% for parent in section.ancestors %}
            {% set s = get_section(path=parent, include_pages=false) %}
                <li><a href="{{s.permalink}}">{{s.title}}</a>&nbsp;&#8594;&nbsp; </li>
            {% endfor %}
                <li>{{ section.title }}</li>
    </ul>
    <h1>{{ section.title }}</h1>
    {{ macro::tree() }}
{% endblock nav %}