{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %} {% block head %} {{ super() }} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}

{{ article.title }}

{% if article.modified %} {% endif %} {% if article.authors %}
By {% for author in article.authors %} {{ author }} {% endfor %}
{% endif %} {% if article.tags %}
{% for tag in article.tags %} {{ tag }} {% endfor %}
{% endif %}

{{ article.content }}
{% endblock %}