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 %}
|
|
|
|
{% for tag, value in page.ogtags %}
|
|
|
|
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-05-14 14:26:44 +01:00
|
|
|
{% block content %}
|
2016-06-13 21:52:59 +01:00
|
|
|
{% if not page.no_container %}
|
|
|
|
<section class="bg-primary">
|
|
|
|
<div class="container text-center text-uppercase">
|
|
|
|
<h1 class="section-heading uppercase">{{ page.title }}</h1>
|
|
|
|
<hr class="light">
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<div class="container">
|
|
|
|
{{ page.content }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% else %}
|
|
|
|
{{ page.content }}
|
|
|
|
{% endif %}
|
2016-05-14 14:26:44 +01:00
|
|
|
{% endblock %}
|