{% extends "blog/base.html" %} {% load blog_tags %} {% block title %}{{ post.title }} | blOgeN{% endblock %} {% block content %} {% if new_comment %}
Your comment has been added successfully!
{% else %} {% endif %}

{{ post.title }}

person {{ post.author }} | publish {{ post.publish.year }}/{{ post.publish.month }} | comment {{ post.comments.count }}


{{ post.body|markdown|safe }}

screen_shareShare comment Comment

Similar Post

{% for post in similar_post %}
{% if post.image %} Post-Image {% endif %}
{{ post.title|truncatewords:5 }}
{% empty %}

There are no Similar Post yet.

{% endfor %}
{% with comments.count as total_comments %} {{ total_comments }} comment{{ total_comments|pluralize}} {% endwith %} {% for comment in comments %} {% empty %}

There are no comments yet!

{% endfor %}
{{ comment.name }} {{ comment.created.year}}/{{ comment.created.month}} {{ comment.body|linebreaks }}
{% endblock %}