1
Fork 0
theorangeone.net-legacy/theme/templates/article.html

22 lines
443 B
HTML

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