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

23 lines
686 B
HTML
Raw Normal View History

2020-07-13 03:13:36 +05:30
{% extends "base.html" %}
{% block content %}
2020-08-26 22:22:20 +05:30
<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>
2020-08-26 22:22:20 +05:30
</a>
2020-07-13 03:13:36 +05:30
</div>
2020-08-26 22:22:20 +05:30
<div class="text container" id="card-container">
{% if posts %}
{% for post in posts %}
2020-08-27 00:19:45 +05:30
{% include '_twitter_post.html' %}
{% endfor %}
{% else %}
2020-08-27 14:26:00 +05:30
{% include '_empty_feed.html' %}
{% endif %}
2020-07-13 03:13:36 +05:30
{% endblock %}