theolem.org/themes/theo_lem/templates/article.html
2020-05-07 18:29:37 +02:00

13 lines
237 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="title-block">
<h1>{{ article.title }}</h1>
<h4>{{ article.date |strftime('%d.%m.%Y')}}</h4>
<hr>
</div>
<div>
{{ article.content }}
</div>
{% endblock content %}