21 lines
437 B
HTML
21 lines
437 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">
|
|
<p class="text-right small">
|
|
Published: {{ article.date|datetime }}
|
|
</p>
|
|
{{ article.content }}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|