{% extends "base.html" %} {% from "base.html" import article_header %} {% block title %}{{ article.title }} : {{ super() }}{% endblock %} {% block feedlinks %} {% endblock %} {% block content %}
{{ article_header(SITEURL, SITENAME, SITESUBTITLE, article, include_history=True) }}
{{ article.content }}

Comments

Have something to add? Post a comment by sending an email to {{ COMMENT_EMAIL }}. You may use Markdown for formatting. {% if article.comments %}

{{article.comments_count}} comment{% if article.comments_count > 1 %}s{% endif %}

{% for comment in article.comments recursive %} {% if loop.depth0 == 0 %} {% set marginLeft = 0 %} {% else %} {% set marginLeft = 50 %} {% endif %}
Avatar

{% if comment.website %} {{ comment.author }} {% else %} {{ comment.author }} {% endif %}

Posted {{ comment.locale_date }} {{ comment.date|strftime('%H:%M') }}

{{ comment.content }} {% if comment.replies %} {{ loop(comment.replies) }} {% endif %}
{% endfor %} {% else %}

There are no comments yet.

{% endif %}

{% endblock %}