kocandaci/templates/personnel.html

22 lines
615 B
HTML

{% extends "base.html" %}
{% block content %}
<section class="wrap narrow centering">
{{ section.content | safe }}
</section>
<section class="wrap personnel">
<div class="filters">
<div id="all" class="button active" data-value="0">Všichni</div>
<div id="1" class="button" data-value="1">1. Běh</div>
<div id="3" class="button" data-value="3">3. Běh</div>
</div>
<div class="grid grid-5 gap-3 grid-mobile-2 grid-mobile-gap-1">
{{ macros::personnel() }}
</div>
</section>
{% endblock %}
{% block script %}
<script src="{{ get_url(path="/js/personnel.js") }}"></script>
{% endblock %}