1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/page.html

23 lines
431 B
HTML
Raw Normal View History

2016-05-14 14:26:44 +01:00
{% extends "base.html" %}
2016-05-20 08:51:27 +01:00
{% block htmltitle %}
2016-06-13 21:52:59 +01:00
{{ page.html_title or page.title }}
2016-05-20 08:51:27 +01:00
{% endblock %}
2016-06-12 11:34:20 +01:00
{% block metadata %}
2016-07-29 08:09:02 +01:00
{{ page.metatags }}
2016-06-12 11:34:20 +01:00
{% endblock %}
2016-05-14 14:26:44 +01:00
{% block content %}
2016-06-13 21:52:59 +01:00
{% if not page.no_container %}
2017-01-13 13:36:51 +00:00
{% include 'extras/header.html' with context %}
2016-06-13 21:52:59 +01:00
<section>
<div class="container">
{{ page.content }}
</div>
</section>
{% else %}
{{ page.content }}
{% endif %}
2016-05-14 14:26:44 +01:00
{% endblock %}