{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}{{ article.title|capitalize }} - {{SITENAME}}{% endblock title %} {% block key_image %}{{ macros.key_image(article) }}{% endblock key_image %} {% block content %} {{ article.title }} {{ 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 content %}