{% 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 or article.thumbnail %}
{{ article.description or '' }}
{% endif %} {{ article.content }} {% if article.location.type == 'settlement' %} {% with article=article %}{% include "settlement.html" %}{% endwith %} {% endif %}
{% include "bottom-nav.html" %}
{% endif %} {% endblock content %}