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/twitter.html
2020-09-14 07:36:45 -04:00

29 lines
873 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="text container centered">
<a style="padding: 1.3em; display: block;" href="{{ url_for('following') }}" class="ui small teal statistic">
<div class="value">
{{ followedCount }}
</div>
<div class="label">
Following
</div>
</a>
</div>
<div class="text container" id="card-container">
{% if posts %}
{% for post in posts %}
{% include '_twitter_post.html' %}
{% endfor %}
{% else %}
{% include '_empty_feed.html' %}
{% endif %}
<div class="scroller">
<a href="#top" class="ui button">
<i style="margin: 0;" class="chevron up icon"></i>
</a>
</div>
</div>
{% endblock %}