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

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


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