{% extends "index.html" %} {% block title %}{{ config.title }} – {{ section.title }}{% endblock %} {% block nav %} {% endblock %} {% block content %}

{{ section.title }}

{% if section.extra.group %}
Cílová skupina – {{ section.extra.group }}
{% endif %} {% if section.extra.time %}
Časová dotace – {{ section.extra.time }}
{% endif %} {% if section.extra.authors %} {% if section.extra.authors | length > 1 %}
Autoři – {% for author in section.extra.authors %} {{ author }} {% if not author == section.extra.authors | last %}, {% endif %} {% endfor %}
{% else %}
Autor – {{ section.extra.authors[0] }}
{% endif %} {% endif %} {{ section.content | safe }} {% endblock content %}