dnd/deadsands/deadsands-theme/templates/pages/index.html

17 lines
494 B
HTML
Raw Normal View History

2022-07-26 17:22:04 -07:00
{% extends "base.html" %}
{% block title %}{{ SITENAME }}: A 5e Homebrew Campaign{%endblock%}
{% block content %}
<section id='content' class='content'>
<div class='box curled'>
<hr>
{{ page.content }}
<hr>
{% if page.show_recent %}
<h3>Recent Posts</h3>
{% with count=10, key='category', values=['lore', 'mechanics', 'regions'] %}{% include "recent.html" %}{% endwith %}
<hr>
{% endif %}
2022-07-26 17:22:04 -07:00
</div>
</section>
{% endblock %}