summaryrefslogtreecommitdiff
path: root/templates/taxonomy_single.html
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2026-01-26 16:13:52 +0100
committerRuben Beltran del Rio <jj@r.bdr.sh>2026-01-27 16:20:37 +0100
commitc4be3181b6f9dc02f6b659506706445c11d9db45 (patch)
treea6e386e7f0e92a008bbdf80cfbb55bc75dcbe4d6 /templates/taxonomy_single.html
parent5737068b4153ba6173206bdb05e504a41ee87d3b (diff)
Add a blog
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 %}