dnd/deadsands/deadsands-theme/templates/page.html

17 lines
539 B
HTML
Raw Permalink Normal View History

2022-07-26 17:22:04 -07:00
{% extends "base.html" %}
2022-08-04 21:34:47 -07:00
{% import "macros.html" as macros %}
{% block title %}{{ page.title }} - {{SITENAME}}{% endblock title %}
{% block summary %}{{ page.summary|striptags }}{% endblock %}
2022-08-04 21:34:47 -07:00
{% block key_image %}{{ macros.key_image(page) }}{% endblock key_image %}
2022-07-26 17:22:04 -07:00
{% block content %}
2022-08-04 21:34:47 -07:00
<section id="content">
<div class='box curled'>
<h2>{{ page.title }}</h2>
<hr>
{{ page.content }}
2022-08-07 16:45:46 -07:00
{% if page.gallery %}{{ macros.gallery(page) }}{% endif %}
2022-08-04 21:34:47 -07:00
<hr>
2022-07-26 17:22:04 -07:00
</div>
2022-08-04 21:34:47 -07:00
</section>
{% endblock content %}