summaryrefslogtreecommitdiff
path: root/zola/templates/taxonomy_list.html
blob: 482785365c212efa1137b0a392a812830dcb3015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block title %}{{ taxonomy.name }}{% endblock %}
{% block header %}{{ taxonomy.name }}{% endblock %}
{% block navigation %}<a href="/">Home</a> &gt; <a href="{{ current_path | safe }}">{{ taxonomy.name }}</a>{% endblock %}
{% block content %}
<dl title="List of {{ taxonomy.name }} entries">
{% for term in terms %}
<dt>
        <p><a href="{{ term.path | safe}}">{{ term.name }}</a></p>
</dt>
{% endfor %}
</dl>
{% endblock %}