{% 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 r = article.metadata.region %} {{ 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 }} {% set target = article.title.replace(' ', '_') %} {% if self.is_dm() or article.show_dm_content %} {{ article.title }} {{ r.dm_notes }} Size{{ r.size }} sq. miles Terrain{{ r.terrain }} (walking: {{ r.size / 10 if r.terrain == 'difficult' else 20 |round }} days) Regional Effects{{ macros.table(r.regional_effects) }} Skill Challenges{{ macros.table(r.skills, ['Skills', 'DC', 'Notes']) }} Encounters (CR {{r.cr}}){{ macros.table(r.encounters, ['Roll', 'Difficulty']) }} Weather Effects{{ macros.table(r.weather, ['Roll', None, 'Description', 'Effect']) }} Forage Table{{ macros.table(r.forage_table, ['Roll', 'Name', 'Description', 'Rarity', 'Value']) }} {% endif %} {% include "bottom-nav.html" %} {% endblock %}