{% extends "blog/base.html" %} {% block title %} loopvid blog tags list {% endblock %} {% block page %}
{% for tag, videos in tags.items() %} {% if videos > 0 %} {# link to tag page #} {{ tag | e }} {# number of videos with this tag #} ({{ videos }} {% if videos > 1 %}videos{% else %}video{% endif %})
{% endif %} {% endfor %} {% if not tags %}

No tags found

{% endif %}
{% endblock %}