{% extends "base.html" %}

{% block htmltitle %}
  {{ article.title }}
{% endblock %}

{% block metadata %}
  {% for tag, value in page.ogtags %}
    <meta property="{{ tag }}" content="{{ value|striptags|e }}" />
  {% endfor %}
{% endblock %}

{% block content %}
  <section class="bg-primary">
    <div class="container text-center text-uppercase">
      <h1 class="section-heading uppercase">{{ article.title }}</h1>
      <hr class="light">
    </div>
  </section>
  <section>
    <div class="container">
      <p class="text-right small">
          Published: {{ article.date|datetime }}
      </p>
      {{ article.content }}
    </div>
  </section>
{% endblock %}