{% extends "blog/base.html" %} {% block title %} loopvid blog sources list {% endblock %} {% block page %}
{% for source in sources %} {% if source['videos'] > 0 %} {# link to source page #} {{ source['title'] | e }} {# external link #} {% if source['url'] %} (external url) {% endif %} {# number of videos with this source #} ({{ source['videos'] }} {% if source['videos'] > 1 %}videos{% else %}video{% endif %})
{% endif %} {% endfor %} {% if not sources %}

No sources found

{% endif %}
{% endblock %}