summaryrefslogtreecommitdiffstats
path: root/templates/taxonomy_single.html
blob: 09b20c4b141976777a10c817a24080f7a0f5793d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "index.html" %}
{% block content %}
  <header>
    <hgroup>
      <h1>{{ taxonomy.name }}::{{ term.name }}</h1>
    </hgroup>
  </header>
  <ul class="simple">
    {% for item in term.pages %}
      <li>
        <article>{{ macros::header(item=item) }}</article>
      </li>
    {% endfor %}
  </ul>
{% endblock content %}