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