mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-11-22 19:29:02 +00:00
10 lines
267 B
HTML
10 lines
267 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}{{ super() }} - {{ page.title|title }}{% endblock %}
|
|
{% block content_title %}{{ page.title|title }}{% endblock %}
|
|
{% block content %}
|
|
{{ page.content }}
|
|
<footer>
|
|
{% include '_page_footer.html' %}
|
|
</footer>
|
|
{% endblock %}
|