{% extends "base.html" %} {% block head %} {% endblock %} {% block title %}{{ article.title }}{% endblock %} {% block header %}

Posted on {{ article.locale_date }}

{% endblock %} {% block content %}

{{ article.title }}

{{ article.content }}

Category: {{ article.category }}

{% if article.tags %}

Tags: {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %}

{% endif %} {% if DISQUS_SITENAME %}

Comments: toggle

{% endif %}
{% if DISQUS_SITENAME %}
{% endif %}
{% endblock %} {% block footer %}

← Back to Index

{% endblock %}