{% extends "base.html" %} {% block metadesc %}{{ article.description|e }}{% endblock %} {% block nav %} Blog ›{{ article.category }} ›{{ article.title }} {% endblock %} {% block content %} {{ super() }} {{ article.title }} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} Post in {{ article.locale_date }} | By {% if article.author %} {{ article.author }} {% elif AUTHOR %} {{ AUTHOR }} {% endif %} | Tags {% for tag in article.tags %} {{ tag }} {% endfor %} {{ article.content }} {% endblock %}