{% extends "base.html" %} {% block content %}
{{ twitterAt }}
{% if user == current_user %}

This is your profile

{% elif not current_user.is_following(user) %}

{{ form.hidden_tag() }} {{ form.submit(value='Follow') }}

{% else %}

{{ form.hidden_tag() }} {{ form.submit(value='Unfollow') }}

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