{% extends "base.html" %} {% block content %}

Hi, {{ current_user.username }}
Following: {{ followedCount }}


{% for post in posts %} {% if post.isRT %} {% include '_post.html' %} {% else %} {% include '_post_nort.html' %} {% endif %} {% endfor %}
{% endblock %}