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

22 lines
402 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2020-06-09 19:40:38 +00:00
<p><a href="/">← Return to Home</a></p>
<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 %}