summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/tag_cloud.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/gstudio/tags/tag_cloud.html')
-rw-r--r--gstudio/templates/gstudio/tags/tag_cloud.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/gstudio/templates/gstudio/tags/tag_cloud.html b/gstudio/templates/gstudio/tags/tag_cloud.html
new file mode 100644
index 0000000..a18a004
--- /dev/null
+++ b/gstudio/templates/gstudio/tags/tag_cloud.html
@@ -0,0 +1,13 @@
+{% load i18n %}
+
+<div>
+ <ul>
+ {% for tag in tags %}
+ <li>
+ <a href="{% url gstudio_tag_detail tag.name %}"
+ title="{% blocktrans count tag.count as nodetype_count %}{{ nodetype_count }} nodetype{% plural %}{{ nodetype_count }} nodetypes{% endblocktrans %}"
+ class="tag_{{ tag.font_size }}">{{ tag }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+</div>