29 lines
737 B
HTML
29 lines
737 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 container_body %}
|
|
{% block container_header %}
|
|
{% endblock container_header %}
|
|
<article>
|
|
{% block content_header %}
|
|
<header>
|
|
<h3>{{ article.title }}</h3>
|
|
</header>
|
|
{% endblock content_header %}
|
|
|
|
{% block content_body %}
|
|
{{ article.content }}
|
|
{% endblock content_body %}
|
|
|
|
{% block content_footer %}
|
|
<footer>ISBN: Bla</footer>
|
|
{% endblock content_footer %}
|
|
</article>
|
|
{% endblock container_body %}
|
|
|
|
{% block container_footer %}
|
|
{% endblock container_footer %} |