{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}{{ article.title|capitalize }} - {{SITENAME}}{% endblock title %} {% block summary %}{{ article.summary|striptags }}{% endblock %} {% block key_image %}{{ macros.key_image(article) }}{% endblock key_image %} {% block content %} {% if not self.is_dm() and article.category == 'dm' %} {% else %}

{{ article.title }}


{% if article.description %}
{{ article.description }}
{% endif %} {{ article.content }}
{% include "bottom-nav.html" %}
{% endif %} {% endblock content %}