summaryrefslogtreecommitdiffstats
path: root/templates/taxonomy_single.html
blob: d05ab26db0181c14ef2e8f55769cc9ef04ccef9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "index.html" %}
{% block content %}
  <header>
    <hgroup>
      <h1>
        <nav aria-label="Breadcrumb" class="breadcrumb">
          <ul>
            <li>
              <a href={{ get_url(path=taxonomy.name) }}>{{ taxonomy.name }}</a>
            </li>
            <li>
              <span aria-current="page">{{ term.name }}</span>
            </li>
          </ul>
        </nav>
      </h1>
    </hgroup>
  </header>
  <ul class="simple">
    {% for item in term.pages %}
      <li>
        <article>{{ macros::header(item=item) }}</article>
      </li>
    {% endfor %}
  </ul>
{% endblock content %}