summaryrefslogtreecommitdiffstats
path: root/templates/section.html
blob: bdd02a0fd7ca20ad45d7144af378ed9bd44ee59b (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(sec=section) }}
{% endblock nav %}