{% extends "templates/html/layouts/base.html" %} {% block content %}

{{post.title}}

{{post.date|date:longDate}}

{% if post.toc %}{{post.toc|safe}}{% endif %} {{post.content|safe}}
{% if post.tags %}
Tags: {% for tag in post.tags %} {{tag.name}} {% endfor %}
{% endif %}
{% if post.prev %} « {{post.prev.title}} {% endif %} {% if all post.prev post.next %} || {% endif %} {% if post.next %} {{post.next.title}} » {% endif %}
{% if disqus-shortname %}
{% endif %}
{% endblock %}