1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/article.html

18 lines
344 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 %}
<section>
<div class="container">
{{ article.content }}
</div>
</section>
{% endblock %}