{% extends "base.html.j2" %} {% import 'macros.imp.j2' as macros %} {% block favicon %} {{ super() }} {% endblock %} {% block title %}{{ title | e }}{% endblock %} {% block content %}

{{ title | e }} {{ macros.emoji_button("subscribe", channel_id, is_subscribed) if channel_id }}

About

{{ channel_desc }}

{% set subpage_name = {'videos': 'videos', 'streams': 'livestreams', 'shorts': 'shorts', 'playlists': 'playlists'} %} {% for _subpage in ('videos', 'streams', 'shorts', 'playlists') %} {{subpage_name[_subpage]}} | {% endfor %}
{% if subpage != "search" %}
{% if subpage in ("videos", "streams", "shorts") %} newest first | most popular {% elif subpage == "playlists" %} last created | last modified {% endif %}
{% endif %}
{% for card in rows %} {{ macros.typed_card(card) }} {% endfor %} {{ macros.dummycard() }}
{% if not rows|length %}no more results{% endif %}
{{ macros.more({'continuation': continuation}) if continuation }}
{% endblock %}