theolem.org/themes/theo_lem/templates/article.html

13 lines
237 B
HTML
Raw Normal View History

2020-04-29 18:17:21 +00:00
{% 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>
2020-04-29 18:17:21 +00:00
{% endblock content %}