17 lines
494 B
HTML
17 lines
494 B
HTML
{% 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 %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|