From 3972ac7febcb578bd89dd113567da716b7614dc7 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sun, 30 Jun 2024 22:40:01 +0200 Subject: [PATCH] Add: tag list template --- archivist/apps/templates/sites/tags_list.html | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 archivist/apps/templates/sites/tags_list.html diff --git a/archivist/apps/templates/sites/tags_list.html b/archivist/apps/templates/sites/tags_list.html new file mode 100644 index 0000000..2f76f4e --- /dev/null +++ b/archivist/apps/templates/sites/tags_list.html @@ -0,0 +1,32 @@ +{% extends "layouts/base-electric.html" %} + +{% load static %} + +{% load string_helper %} + +{% block title %} + Tags +{% endblock title %} + + +{% block content %} + + {% include "includes/navigation-transparent.html" %} + +
+
+
+

Tags

+ +
+ +
+ {% for tag in tags %} + {{ tag|capfirst }} + {% endfor %} +
+
+
+
+ +{% endblock content %}