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

{{ topic.title }}

INTERN
{% if topic.description %}

{{ topic.description }}


{% endif %} {{ topic.content|safe }}
{% if child_topics %}
Unterseiten
{% for child in child_topics %} {% endfor %}
{% endif %}
{% if topic.toc %}
Inhalt
{% endif %}
{% endblock %}