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/blog.html

24 lines
518 B
HTML
Raw Normal View History

2016-06-03 22:12:34 +01:00
{% extends "base.html" %}
{% block htmltitle %}
{{ article.title }}
{% endblock %}
2016-06-12 11:34:20 +01:00
{% block metadata %}
2016-06-13 21:52:59 +01:00
{% for tag, value in article.ogtags %}
2016-06-12 11:34:20 +01:00
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
{% endblock %}
2016-06-03 22:12:34 +01:00
{% block content %}
{% include 'extras/header.html' with context %}
2016-06-03 22:12:34 +01:00
<section>
<div class="container">
<p class="text-right small">
Published: {{ article.date|datetime }}
2016-06-03 22:12:34 +01:00
</p>
{{ article.content }}
</div>
</section>
{% endblock %}