{% extends "base.html" %}
{% block htmltitle %}
{{ page.html_title or page.title }}
{% endblock %}
{% block metadata %}
{% for tag, value in page.ogtags %}
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
{% block content %}
{% if not page.no_container %}
{% include 'extras/header.html' with context %}
<section>
<div class="container">
{{ page.content }}
</div>
</section>
{% else %}
{% endif %}