{% extends "components/base.html" %} {% block title %}Post{% endblock %} {% block main_area %}

{{ post.title }}

{% if post.summary %}
{{ post.summary }}
{% endif %}
{{ post.created_at }}
by. {{ post.author | upper }}
{{ post.render_markdown|safe }}

{% if post.tags.exists %} {% for tag in post.tags.all %} {{ tag }} {% endfor %}

{% endif %} List {% if request.user == post.author %} Edit {% endif %} {% endblock %}