{% extends "base.html" %} {% block content %}

{{data.channel_name}}

{% if data.short_description %}

{{data.short_description}}

{%endif%}
{% if restricted or current_user.is_authenticated %} {% if not current_user.is_following_yt(data.channel_id) %}
{% else %}
{%endif%} {%endif%}


{% if data['error'] != None %} {% include '_empty_feed.html' %} {% else %}
{% for video in data['items'] %}
{%if video.duration == "PREMIERING NOW" or video.duration == "LIVE"%} LIVE {%else%} {{video.time_published}} {%endif%}
{% endfor %}
{% endif %}

{% endblock %}