From 6d3b8739287f8f1c89211b1c785342c2ce9050f5 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 1 Nov 2023 21:02:09 +0100 Subject: pokpok --- templates/tags/list.html | 21 +++++++++++++++++++++ templates/tags/single.html | 20 ++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 templates/tags/list.html create mode 100644 templates/tags/single.html (limited to 'templates/tags') diff --git a/templates/tags/list.html b/templates/tags/list.html new file mode 100644 index 0000000..c18899d --- /dev/null +++ b/templates/tags/list.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% block title %} +Tags - {{ config.title }} +{% endblock %} + +{% block content %} + +
+

Tags

+
+ +
+ +
+ +{% endblock %} diff --git a/templates/tags/single.html b/templates/tags/single.html new file mode 100644 index 0000000..a08695c --- /dev/null +++ b/templates/tags/single.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} + +{% block title %} +{{ term.name }} - {{ config.title }} +{% endblock %} + +{% block content %} + +
+

{{ term.name }}

+
+
+ +
+ +{% endblock %} -- cgit