t-r.de/theme/templates/article.html
2025-02-10 14:55:04 +01:00

20 lines
550 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 %}
<header id="main-header">
<h1>{{ article.title }}</h1>
</header>
{% endblock content_header %}
{% block content_body %}
<article>{{ article.content }}</article>
{% endblock content_body %}
{% block content_footer %}
<footer>ISBN: Bla</footer>
{% endblock content_footer %}