{% extends "base.html" %} {% block head %} {% if FUZZY_DATES %} {% endif %} {% endblock %} {% block title %}{{ article.title|striptags|escape }} | {{ SITENAME }}{% endblock %} {% block description %}{{ article.title|striptags|escape }} | {{ article.content|striptags|truncate(154-article.title|length)|escape }}{% endblock %} {% block content %}

{{ article.title }}

{{ article.content }}

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

{% if article.modified %}

Last updated

{% endif %}

{% 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 %} {% block scripts %} {{ super() }} {% if FUZZY_DATES %} {% endif %} {% endblock %}