From 8354b8f77fdfd907f07574b63e910aba09232ade Mon Sep 17 00:00:00 2001 From: Nicolas Dato Date: Tue, 26 Nov 2024 11:50:27 -0300 Subject: first article, safer pointers --- zola/templates/taxonomy_list.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 zola/templates/taxonomy_list.html (limited to 'zola/templates/taxonomy_list.html') diff --git a/zola/templates/taxonomy_list.html b/zola/templates/taxonomy_list.html new file mode 100644 index 0000000..4827853 --- /dev/null +++ b/zola/templates/taxonomy_list.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block title %}{{ taxonomy.name }}{% endblock %} +{% block header %}{{ taxonomy.name }}{% endblock %} +{% block navigation %}Home > {{ taxonomy.name }}{% endblock %} +{% block content %} +
+{% for term in terms %} +
+

{{ term.name }}

+
+{% endfor %} +
+{% endblock %} + -- cgit v1.2.3