personal-site/themes/theme/templates/article.html

21 lines
360 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<header>
<h1>{{ article.title }}</h1>
2020-06-03 04:26:52 +00:00
<div class="summary">
{{ article.summary }}
</div>
<p class="metadata">
{{ article.locale_date }}
{% if article.modified %}
— updated {{ article.locale_modified }}
{% endif %}
</p>
</header>
<hr />
<article>
{{ article.content }}
</article>
{% endblock %}