From e9a3b25edf20298b47e415244a0cda53ab60e91e Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Tue, 13 Oct 2020 10:51:16 -0300 Subject: [PATCH] Turned the tag list into a tag cloud --- templates/tags/list.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/tags/list.html b/templates/tags/list.html index 0d2e6bf..e91f232 100644 --- a/templates/tags/list.html +++ b/templates/tags/list.html @@ -4,6 +4,12 @@

all tags

+ {% for term in terms %} + {% set size = term.pages | length + 90 %} + {{ term.name }} + {% endfor %} + +
{% endblock content %}