theolem.org/themes/theo_lem/templates/article.html
2021-05-03 19:34:06 +02:00

17 lines
357 B
HTML

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