{% if article.content | length is not eq(0) %}
{{ article.content }}
{% endif %}
{% if article.stats or article.tags %}
Details
{% if article.stats %}
{# {% if article.date %}
- Erstveröffentlichung: {{ article.date.strftime("%d.%m.%Y") }}
{% endif %} #}
{% if article.stats.series %}
- aus der Reihe "{{ article.stats.series }}"
{% endif %}
{% if article.stats.issue %}
- Ausgabe {{ article.stats.issue }}
{% endif %}
{% if article.stats.editor %}
- herausgegeben von {{ article.stats.editor }}
{% endif %}
{% if article.stats.published_in or article.stats.published_as %}
{% set ns = namespace() %}
{% if article.stats.published_in %}
{% set ns.stats = article.stats.published_in %}
{% set ns.title_line = "Veröffentlicht in" %}
{% else %}
{% set ns.stats = article.stats.published_as %}
{% set ns.title_line = "Verfügbar als" %}
{% endif %}
{% for p in ns.stats %}
{% if p.title %}
{# - Veröffentlicht in {% if p.link %}{% endif %}{{ p.title }}{% if p.link %}{% endif %} #}
- {{ ns.title_line }} {{ p.title }}
{% endif %}
{% if p.date %}
- am {{ p.date.strftime("%d.%m.%Y") }}
{% endif %}
{% if p.issue %}
- Ausgabe {{ p.issue }}
{% endif %}
{% if p.publisher %}
- Verlag: {{ p.publisher }}
{% endif %}
{% if p.series %}
- aus der Reihe "{{ p.series }}"
{% endif %}
{% if p.editor %}
- herausgegeben von {{ p.editor }}
{% endif %}
{% if p.isbn %}
- ISBN: {{ p.isbn }}
{% endif %}
{% if p.issn %}
- ISSN: {{ p.issn }}
{% endif %}
{% if p.read_it_full %}
- Volltext verfügbar
{% endif %}
{% if p.read_it_partial %}
- Leseprobe verfügbar
{% endif %}
{% if p.link and p.link_text %}
- {{ p.link_text }}
{% endif %}
{% if p.title %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% if article.tags %}
- Schlagworte:
{% for t in article.tags %}
- {{ t }}
{% endfor %}
{% endif %}
{% endif %}
{% if article.featured_image %}
{% from 'includes/macros.html' import fi %}
{% set i = article.featured_image[0] %}
{{ fi(i.pic, i.link, i.alt, i.title, i.credit, i.credit_link) }}
{% endif %}
{% if article.klappentext %}
Klappentext
{{ article.klappentext }}
{% endif %}