{% extends "base.html"%} {% load static %} {% load markdown_tags %} {% block title%} - {{ post.title }}{% endblock title %} {% block meta %} {% if post.seo %} {% endif %} {% if post.image %} {% endif %} {% endblock meta %} {% block styles %} {% endblock styles %} {% block content %}
{% if post.image %}
{{ post.title }}

Author

  • {{ post.author.get_full_name|default:"Add First-Name and Surname to your Profile" }}

Tags

    {% for cat in post.category.all %}
  • {{ cat.name }}
  • {% endfor %}
{% endif %}

{{ post.title }}

{{ post.content | markdown | safe }}

Comments

{% if not comments %}

There are no comments yet.

{% else %} {% for comment in comments %}

{{comment.author}}

{{comment.message}}

{% endfor %} {% endif %}
{% csrf_token %}
  • {{ form.author }}
  • {{ form.message }}
  • {{ form.captcha }}
{% if is_submitted %}

Thanks a lot.
Your comment will be published here as soon as possible.

{% endif %}
{% endblock content %}