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

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

{% block content %}
<section class="taxonomy-index single-column">
  <h1><a href="/{{taxonomy.name | slugify}}">{{ taxonomy.name | title }}</a> / {{ term.name }}</h1>
  {% for page in paginator.pages %}
    {{ post_macros::summary(post=page) }}
  {% endfor %}
  {{ pagination_macros::index_pages() }}
</section>
{% endblock %}