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 %}