t-r.de/theme/templates/article.html
2025-02-07 00:42:24 +01:00

22 lines
553 B
HTML

{% extends "base.html" %}
{% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
{% block metadesc %}{% if article.summary %}{{ article.summary|e }}{% else %}An Article in {{ SITETAG }}: {{
article.title }}{% endif
%}{% endblock %}
{% block content_header %}
<article>
<header>
<h1>{{ article.title }}</h1>
</header>
{% endblock content_header %}
{% block content_body %}
{{ article.content }}
{% endblock content_body %}
{% block content_footer %}
<footer>ISBN: Bla</footer>
</article>
{% endblock content_footer %}