summaryrefslogtreecommitdiff
path: root/templates/taxonomy_single.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/taxonomy_single.html')
-rw-r--r--templates/taxonomy_single.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/taxonomy_single.html b/templates/taxonomy_single.html
new file mode 100644
index 0000000..e90c968
--- /dev/null
+++ b/templates/taxonomy_single.html
@@ -0,0 +1,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 %}