dnd/deadsands/deadsands-theme/templates/page.html
2022-08-07 16:45:46 -07:00

17 lines
539 B
HTML

{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block title %}{{ page.title }} - {{SITENAME}}{% endblock title %}
{% block summary %}{{ page.summary|striptags }}{% endblock %}
{% block key_image %}{{ macros.key_image(page) }}{% endblock key_image %}
{% block content %}
<section id="content">
<div class='box curled'>
<h2>{{ page.title }}</h2>
<hr>
{{ page.content }}
{% if page.gallery %}{{ macros.gallery(page) }}{% endif %}
<hr>
</div>
</section>
{% endblock content %}