{% extends "base.html" %} {% block title %}{{ article.title }} | {{ SITENAME }}{% endblock %} {% block head %} {{ super() }} {% if article.keywords %} {% endif %} {% for tag in article.ogtags %} {% if tag[0] == 'og:description' %} {% else %} {% endif %} {% endfor %} {% if article.category == 'Books' %} {% endif %} {% endblock %} {% if GOOGLE_ADSENSE_CLIENT %} {% block precontent %} {% endblock %} {% endif %} {% block content %}

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}

Back to {{article.category}}

{{ article.content }} {% if SHOW_STATS and article.stats %}

Article Stats

{{ article.stats['wc'] }} words and {{ article.stats['read_mins'] }} min read

{% endif %}
{% if DISQUS_SHORT_NAME %}

Comments

{% endif %}
{% endblock %}