Parasitter/app/templates/invidious.html

15 lines
310 B
HTML

{% extends "base.html" %}
{% block content %}
<br>
<br>
{% if videos %}
<div class="ui centered cards">
{% for video in videos %}
{% include '_video_item.html' %}
{% endfor %}
</div>
{% else %}
{% include '_empty_feed.html' %}
{% endif %}
{% endblock %}