{% extends "biblion/blog_base.html" %} {% load biblion_tags %} {% load dialogos_tags %} {% block head_title %}{{ post.title }}{% endblock %} {% block extra_head %} {% endblock %} {% block blog_content %}

{{ post.title }}

{% include "biblion/dateline.html" %}
{{ post.teaser_html|safe }}
{{ post.content_html|safe }}
{% comments post as comments %} {% for comment in comments %}
{{ comment.comment|escape|urlize|safe }} — {{ comment.submit_date|timesince }} ago
{% endfor %} {% comment_form post as comment_form %}
{% csrf_token %}
{{ comment_form.comment }}
{% endblock %}