{% extends 'base.html' %} {% load i18n %} {% load markdown_extras %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}

{{ post.title }}

{% if post.summary %}

{{ post.summary }}

{% endif %} {% if post.tags.exists %}
{% for tag in post.tags.all %} {% with number=forloop.counter %} {{ tag.name }} {% endwith %} {% endfor %}
{% endif %}
{{ post.content|markdown|safe }}
{% endblock %} {% block extra_js %} {% endblock %}