From 040fa162f87ccf23e9b2f363326bce84c57d70f8 Mon Sep 17 00:00:00 2001 From: Ekaitz Zárraga Date: Thu, 28 Mar 2019 13:09:33 +0100 Subject: add themes page to theme --- themes/elenq/templates/tags.html | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'themes/elenq/templates/tags.html') diff --git a/themes/elenq/templates/tags.html b/themes/elenq/templates/tags.html index b5d1482..393a983 100644 --- a/themes/elenq/templates/tags.html +++ b/themes/elenq/templates/tags.html @@ -1,10 +1,13 @@ {% extends "base.html" %} - -{% block title %}{{ SITENAME }} - Tags{% endblock %} - +{% block title %}Tags — {{ SITENAME }}{% endblock %} {% block content %} -

Tags for {{ SITENAME }}

- {%- for tag, articles in tags|sort %} -
  • {{ tag }} ({{ articles|count }})
  • +
    +

    Tags

    + +

    + {% for tag, articles in tags|sort %} + {{ tag.name }} ({{ articles|count }})
    {% endfor %} +

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