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>
|
2022-08-07 13:12:38 -07:00
|
|
|
{% 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 %}
|