{% extends "base.html" %} {% block title %}{{ topic.title }}{% endblock %} {% block content %}

{{ topic.title }}

{{ topic.description }}

{% if topic.tags %}
{% for tag in topic.tags %} {{ tag }} {% endfor %}
{% endif %}
{{ topic.content|safe }}
{% if child_topics %}
Unterseiten
{% endif %} {% if topic.related %}
Verwandte Themen
{% for related_id in topic.related %} {% for section in content.sections %} {% for t in section.topics %} {% if t.id == related_id %} {% endif %} {% endfor %} {% endfor %} {% endfor %}
{% endif %}
{% if topic.toc %}
Inhalt
{% endif %} {% if topic.tips %}
Tipps
    {% for tip in topic.tips %}
  • {{ tip }}
  • {% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}