{% extends "base.html" %} {% load markdownify %} {% block head_extra %} {% endblock %} {% block title %} - {{ post.title }}{% endblock %} {% block meta_description %}{{ post.summary }}{% endblock %} {% block canonical %}{{ request.scheme }}://{{ request.get_host }}{{ post.get_absolute_url }}{% endblock %} {% block og_tags %} {% if post.featured_image %} {% endif %} {% endblock %} {% block twitter_tags %} {% if post.featured_image %} {% endif %} {% endblock %} {% block content %} {% if is_draft %}
Draft preview — this content has not been published.
{% endif %}

{{ post.title }}

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