21 lines
360 B
HTML
21 lines
360 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<header>
|
||
|
<h1>{{ article.title }}</h1>
|
||
|
<p class="metadata">
|
||
|
{{ article.locale_date }}
|
||
|
{% if article.modified %}
|
||
|
— updated {{ article.locale_modified }}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
<div class="summary">
|
||
|
{{ article.summary }}
|
||
|
</div>
|
||
|
</header>
|
||
|
<hr />
|
||
|
<article>
|
||
|
{{ article.content }}
|
||
|
</article>
|
||
|
{% endblock %}
|