{% extends 'baseblog.html' %} {% load reviews %} {% block meta %} {% endblock meta %} {% block list_of_items %}

{% block title %} {{ post.title }} {% endblock title %}

{% if post.author.name != "Empty user" %} {{ post.author.name }} {% endif %}
{{ post.created_on }}

{% if post.image.width > post.image.height %}
Card image
{% endif %} {% if post.image.width < post.image.height %} Card image {% endif %}
{{ post.content | safe }}

{% endblock list_of_items %}