{% 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 %} {% set m = article.metadata.monster %} {{ 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 %} {% set target = article.title.replace(' ', '_') %} {% if self.is_dm() or article.show_dm_content %} {% include "statblock.html" %} {% endif %} {{ article.content }} {{ m.dm_notes }} {% include "bottom-nav.html" %} {% endblock %}