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

16 lines
315 B
HTML
Raw Normal View History

2020-04-29 18:17:21 +00:00
{% extends 'base.html' %}
2020-05-10 14:23:09 +00:00
{% block title %}{{ SITENAME }} | {{ article.title }} {% endblock title %}
2020-04-29 18:17:21 +00:00
{% block content %}
2020-05-07 16:29:37 +00:00
<div class="title-block">
<h1>{{ article.title }}</h1>
2020-05-10 14:23:09 +00:00
<h4>{{ article.date | strftime('%d.%m.%Y')}}</h4>
2020-05-07 16:29:37 +00:00
<hr>
</div>
2020-05-07 16:29:37 +00:00
<div>
{{ article.content }}
</div>
2020-04-29 18:17:21 +00:00
{% endblock content %}