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

{{ post.title|upper }}

{{ post.title }}

{{ post.description|safe }}


{{ post.get_number_of_comments }} Comments

{% for comment in comments %}

{{ comment.name }}

{{ comment.date_created }} {% comment %} Reply {% endcomment %}

{{ comment.message }}

{% comment %}

John Doe

March 27, 2018 at 8:00 am Reply

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

{% endcomment %}
{% endfor %}

Leave a reply

your email address will not be published. required fields are marked *

{% csrf_token %}
Name *
Email *
Website

Most Read

{% for post in most_read_posts %}
{{ post.title }}

{{ post.title }}

{% endfor %}

Featured Posts

{% for post in featured_posts %}
{{ post.title }}

{{ post.title }}

{% endfor %}
{% endblock content %}