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

18 lines
348 B
HTML

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