From c4be3181b6f9dc02f6b659506706445c11d9db45 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 26 Jan 2026 16:13:52 +0100 Subject: Add a blog --- templates/taxonomy_single.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 templates/taxonomy_single.html (limited to 'templates/taxonomy_single.html') 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 %} +
+

{{ taxonomy.name | title }} / {{ term.name }}

+ {% for page in paginator.pages %} + {{ post_macros::summary(post=page) }} + {% endfor %} + {{ pagination_macros::index_pages() }} +
+{% endblock %} -- cgit