{% extends "base.html" %}
{% block head %}
{% 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 %}
{% if DISPLAY_META_ABOVE_ARTICLE %}
{% include "modules/article_meta.html" %}
{% endif %}
{{ article.content }}
{% if not DISPLAY_META_ABOVE_ARTICLE %}
{% include "modules/article_meta.html" %}
{% endif %}
{% if DISQUS_SITENAME %}
{% endif %}
{% endblock %}
{% block scripts %}
{{ super() }}
{% if FUZZY_DATES %}
{% endif %}
{% endblock %}