{% 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 %} main{ display:flex; flex-direction: row; } .video-section{ flex-grow: 1; padding-left: 10px; padding-top: 10px; } .current-tag{ margin-bottom:10px; } .video-section .page-button-row{ justify-content: center; } .subscriptions-sidebar{ flex-basis: 300px; background-color: var(--interface-color); border-left: 2px; } .sidebar-links{ display:flex; justify-content: space-between; padding-left:10px; padding-right: 10px; } .sidebar-list{ list-style: none; padding-left:10px; padding-right: 10px; } .sidebar-list-item{ display:flex; justify-content: space-between; margin-bottom: 5px; } .sub-refresh-list .sidebar-item-name{ text-overflow: clip; white-space: nowrap; overflow: hidden; max-width: 200px; } {% endblock style %} {% block main %}
{% if current_tag %}

{{ current_tag }}

{% endif %}


{% endblock main %}