summaryrefslogtreecommitdiffstats
path: root/templates/taxonomy_list.html
blob: d3b611dd78ba0084e427c515431c7d28c8441af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "index.html" %}
{% block content %}
  <header>
    <hgroup>
      <h1>{{ taxonomy.name }}</h1>
    </hgroup>
  </header>
  <ul class="simple">
    {% for term in terms %}
      <li>
        <a href="{{ term.permalink }}">::{{ term.name }}</a>
        ({{ term.pages | length }})
      </li>
    {% endfor %}
  </ul>
{% endblock content %}