{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}{{ article.title|capitalize }} - {{SITENAME}}{% endblock title %} {% 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(' ', '_') %} {{ article.title }} {{ r.description }} Size{{ r.size }} sq. miles Terrain{{ r.terrain }} (walking: {{ r.size / 10 if r.terrain == 'difficult' else 20 |round }} days) Skill Challenges Skill DC Resources {% for (k, v) in [ ('Travel', r.travel), ('Forage', r.forage), ('Track', r.track), ('Evade', r.evade), ('Survey', r.survey) ] %} {{ k }} {{ v.dc or ""}} {{ v.resources or ""}} {% endfor %} Encounters (CR {{r.cr}}){{ macros.rolltable(r.encounters) }} Regional Effects{{ macros.rolltable(r.regional_effects) }} Weather Effects{{ macros.rolltable(r.weather) }} {% include "bottom-nav.html" %} {% endblock %}