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

23 lines
443 B
HTML
Raw Normal View History

2016-06-13 22:11:05 +01:00
{% extends "base.html" %}
{% block htmltitle %}
2017-01-19 18:25:22 +00:00
{{ article|get_html_title }}
2016-06-13 22:11:05 +01:00
{% endblock %}
{% block metadata %}
2016-07-29 08:09:02 +01:00
{{ article.metatags }}
2016-06-13 22:11:05 +01:00
{% endblock %}
{% block content %}
2017-01-13 17:35:32 +00:00
{% include 'extras/header.html' with instance=article %}
2017-02-05 15:49:59 +00:00
{% if not article.no_container %}
<section>
<div class="container">
{{ article.content }}
</div>
</section>
{% else %}
{{ article.content }}
{% endif %}
2016-06-13 22:11:05 +01:00
{% endblock %}