{% extends "base.html" %}
{% block htmltitle %}
{{ article|get_html_title }}
{% endblock %}
{% block metadata %}
{{ article.metatags }}
{% block content %}
{% include 'extras/header.html' with instance=article %}
<section>
<div class="container">
{{ article.content }}
</div>
</section>