This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Yotter/app/templates/youtube.html

15 lines
310 B
HTML
Raw Normal View History

2020-07-27 18:30:01 +05:30
{% extends "base.html" %}
{% block content %}
2020-07-31 15:58:52 +05:30
<br>
<br>
2020-07-27 18:30:01 +05:30
{% if videos %}
<div class="ui centered cards">
{% for video in videos %}
2020-07-31 15:58:52 +05:30
{% include '_video_item.html' %}
2020-07-27 18:30:01 +05:30
{% endfor %}
</div>
{% else %}
{% include '_empty_feed.html' %}
{% endif %}
{% endblock %}