From 0290aee70d071b3d5db2ce14635842043763acb5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 1 May 2016 23:53:51 -0400 Subject: create a basic theme (from bnewnet style) --- theme/templates/tags.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 theme/templates/tags.html (limited to 'theme/templates/tags.html') diff --git a/theme/templates/tags.html b/theme/templates/tags.html new file mode 100644 index 0000000..b5d1482 --- /dev/null +++ b/theme/templates/tags.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block title %}{{ SITENAME }} - Tags{% endblock %} + +{% block content %} +

Tags for {{ SITENAME }}

+ {%- for tag, articles in tags|sort %} +
  • {{ tag }} ({{ articles|count }})
  • + {% endfor %} +{% endblock %} -- cgit v1.2.3