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

{{ post.title }}

Written on by {{ post.author.user.username }} {% if post.tags %} in {% for t in post.tags.all %}{{ t.name }} {% endfor %}{% endif %}
{{ post.content|markdownify }}
{% endblock %}