{% if current_tag %} {% set page_title = 'Subscriptions - ' + current_tag %} {% else %} {% set page_title = 'Subscriptions' %} {% endif %} {% extends "base.html" %} {% import "common_elements.html" as common_elements %} {% block style %} {% endblock style %} {% block main %}

{% if current_tag %}

{{ current_tag }}

{% endif %}
{% for video_info in videos %} {{ common_elements.item(video_info) }} {% endfor %}

{% endblock main %}