summaryrefslogtreecommitdiff
path: root/templates/taxonomy_list.html
blob: 18e53cec6b93fb14777e8224e89f7e4910949f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% import "header_macros.html" as header_macros %}

{% block header %}
  {{ header_macros::small_header() }}
{% endblock %}

{% block content %}
<section class="taxonomy single-column">
  <h1>{{ taxonomy.name | title }}</h1>
  <ul>
    {% for term in terms %}
      <li><a href="{{ term.permalink }}">{{ term.name }}</a></li>
    {% endfor %}
  </ul>
</section>
{% endblock %}