24 lines
530 B
HTML
24 lines
530 B
HTML
{% 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 %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if not page.no_container %}
|
|
{% include 'extras/header.html' with context %}
|
|
<section>
|
|
<div class="container">
|
|
{{ page.content }}
|
|
</div>
|
|
</section>
|
|
{% else %}
|
|
{{ page.content }}
|
|
{% endif %}
|
|
{% endblock %}
|