From 3b57b96653b38dc649b5b675fa0b2c5eb0e22388 Mon Sep 17 00:00:00 2001 From: Richard Bos Date: Tue, 27 Jul 2021 11:22:45 +0200 Subject: [PATCH] Added support for tag_cloud --- templates/tags.html | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/templates/tags.html b/templates/tags.html index 16a6e83..b29bfc9 100644 --- a/templates/tags.html +++ b/templates/tags.html @@ -2,12 +2,33 @@ {% block title %} – {{ _('Tags') }}{% endblock %} +{% block meta %} + {% if PLUGINS and 'tag_cloud' in PLUGINS %} + + {% endif %} +{% endblock %} + {% block content %}

{{ _('Tags') }}

-
+ + {% if PLUGINS and 'tag_cloud' in PLUGINS %} +
+

{{ _('Tag Cloud') }}

+
    + {% for tag in tag_cloud %} +
  • {{ tag.0 }}
  • + {% endfor %} +
+
+
+

{{ _('Tag List') }}

+ {% endif %} + {% if not PLUGINS or 'tag_cloud' not in PLUGINS %} +
+ {% endif %}
    {%- for tag, articles in tags|sort %}
  • {{ tag }} ({{ articles|count }})
  • @@ -16,3 +37,4 @@
{% endblock %} +