{% extends 'base.html' %} {% load static %} {% block title %}{{post.title_tag}}{% endblock %} {% block content %}

{{post.title}} -- 

BY: {{post.author.first_name}} {{post.author.last_name}}-- {{ post.post_date}}

{% if user.is_authenticated %} {% if user.id == post.author.id %} -EDIT

-DELETE

{% endif %} {% endif %}
{% if post.header_image %} {% endif %}

{{post.body|safe}}

BACK

{% csrf_token%}
{% if user.is_authenticated %} {% if liked %} {% else %} {% endif%} {% else %} PLEASE LOG IN TO LIKE THIS POST LOGIN {% endif %} -- {{total_likes}}  LIKES

{% if page_user.profile.profile_pic%} {% else %} {% endif %}

{{page_user.user.first_name}} {{ page_user.user.last_name}}

MY WEBSITE - MY FACEBOOK - MY INSTRAGRAM




{% if page_user.profile.profile%}

{% if page_user.website_url%} MY WEBSITE - {% endif%} {% if page_user.facebook_url %} MY FACEBOOK - {% endif%} {% if page_user.profile.instragram%} MY INSTRAGRAM {% endif%}

{{page_user.bio}}

{{page_user}} {% endif%} {% endblock%}