{% extends "base.html" %} {% block meta_author %}{{ article.author|e }}{% endblock %} {% block meta_description %}{{ article.description|e }}{% endblock %} {% block meta_keywords %}{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}{% endblock %} {% block title %}{{ SITENAME }} - {{ article.title }} - {{ article.author }}{% endblock title %} {% 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 %}