23 lines
686 B
HTML
23 lines
686 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 %}
|
|
{% endblock %}
|