kocandaci/templates/personnel.html

22 lines
583 B
HTML
Raw Normal View History

2024-01-10 00:55:48 +01:00
{% extends "base.html" %}
{% block content %}
2024-01-11 22:08:33 +01:00
<section class="wrap narrow centering">
2024-01-11 18:10:51 +01:00
{{ section.content | safe }}
</section>
<section class="wrap personnel">
2024-01-11 19:25:02 +01:00
<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>
2024-01-11 18:10:51 +01:00
<div class="grid grid-5 gap-3">
{{ macros::personnel() }}
</div>
2024-01-10 00:55:48 +01:00
</section>
{% endblock %}
2024-01-11 19:25:02 +01:00
{% block script %}
<script src="{{ get_url(path="/js/personnel.js") }}"></script>
{% endblock %}