{% extends "base.html" %} {% block title %}{{ article.title|capitalize }} - {{SITENAME}}{% endblock title %} {% block content %} {{ article.title }} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {{ article.locale_date }} {% if article.tags %}{% for tag in article.tags %}{{ tag }} {% endfor %}{% endif %} {% if article.description %} {{ article.description }} {% endif %} {{ article.content }} {% include "bottom-nav.html" %} {% endblock %}