{% 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 %}
    <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 %}
{% endblock %}