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

23 lines
592 B
HTML

{% extends "base.html" %}
{% block content %}
<div style="padding: 1.3em;" class="ui one column centered grid">
<a href="{{ url_for('ytfollowing') }}"><div class="ui small red statistic">
<div class="value">
{{ followCount }}
</div>
<div class="label">
Following
</div>
</div></a>
</div>
{% if videos %}
<div class="ui centered cards">
{% for video in videos %}
{% include '_video_item.html' %}
{% endfor %}
</div>
{% else %}
{% include '_empty_feed.html' %}
{% endif %}
{% endblock %}