{% 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.title }}

{% endblock content_header %} {% block content_body %}
{% if article.content | length is not eq(0) %}{{ article.content | safe }}{% endif %} {% if article.klappentext %}

Klappentext

{{ article.klappentext }}
{% endif %}
{% if article.featured_image is defined %} {% from 'includes/macros.html' import fi %} {% set i = article.featured_image[0] %} {{ fi(i.pic, i.link, i.text, i.title, i.credit, i.credit_link) }} {% endif %}

Details

    {% if article.reihe is defined %}
  • aus der Reihe {{ article.reihe }}
  • {% endif %} {% if article.tags is defined %}
  • Schlagworte: {% for tag in article.tags %}{% if not loop.first %}, {% endif%}{{ tag }}{% endfor %}
  • {% endif %} {% if article.isbn is defined %}
  • ISBN: {{ article.isbn }}
  • {% endif %} {% if article.verlag is defined %}
  • erschienen bei: {{ article.verlag }}
  • {% endif %}
{% endblock content_body %}