theolem.org/themes/theo_lem/templates/article.html
2020-04-30 18:12:44 +02:00

13 lines
237 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="title-block">
<h1>{{ article.title }}</h1>
<h4>{{ article.date}}</h4>
<p>---</p>
</div>
<div class="content">
{{ article.content }}
</div>
{% endblock content %}