{% extends "base.html" %} {% block head %} {% endblock %} {% block title %}{{ article.title|striptags|escape }} | {{ SITENAME }}{% endblock %} {% block description %}{{ article.title|striptags|escape }} | {{ article.content|striptags|truncate(250)|escape }}{% endblock %} {% block subheader %}

Posted {% if article.author %} by{% if AUTHORS_URL %} {{ article.author }} {% else %} {{ article.author}} {% endif %} {% endif %} on {{ article.locale_date }}

{% endblock %} {% block content %}

{{ article.title }}

{{ article.content }}

{% if CATEGORY_URL %} Category: {{ article.category }} {% if TAG_URL and article.tags %}––{% endif %} {% endif %} {% if TAG_URL and article.tags %} Tags: {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %}

{% endif %}
{% if DISQUS_SITENAME %}
{% endif %}
{% endblock %}