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