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

21 lines
447 B
HTML
Raw Normal View History

2016-06-13 22:11:05 +01:00
{% extends "base.html" %}
{% block htmltitle %}
{{ article.html_title or article.title }}
{% endblock %}
{% block metadata %}
{% for tag, value in article.ogtags %}
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
{% endblock %}
{% block content %}
{% include 'extras/header.html' with context %}
2016-06-13 22:11:05 +01:00
<section>
<div class="container">
{{ article.content }}
</div>
</section>
{% endblock %}