You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
551 B
HTML
21 lines
551 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block extra %}
|
|
{{ macro::breadcrumbs(page=section) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<main class="fullwidth">
|
|
<section class="centering people-list">
|
|
<h1>{{ section.title }}</h1>
|
|
{{ section.content | safe }}
|
|
<h2>Vedení katedry</h2>
|
|
{{ macro::list_people(group="vedeni") }}
|
|
<h2>Vědecko-pedagogičtí pracovníci</h2>
|
|
{{ macro::list_people(group="ucitele") }}
|
|
<h2>Odborní pracovníci</h2>
|
|
{{ macro::list_people(group="odborni-pracovnici") }}
|
|
</section>
|
|
</main>
|
|
{% endblock content %}
|