yotter / app /templates /youtube.html
soiz1's picture
Upload 147 files
340cbde verified
raw
history blame contribute delete
614 Bytes
{% 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 %}