summaryrefslogtreecommitdiff
path: root/src/match_up/templates/players.j2
blob: ae6afe0fc92c20aeffcabce4e43798a5785b128d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% from "macros.j2" import header, navbar, footer, player %}
<!doctype html>
<html lang="en">
	{{ header() }}
	<body>
		<section class="section">
			{{ navbar() }}
			<div class="fixed-grid has-4-cols">
            <div class="grid">
            {% for id, value in players.items() %}
                <div class="cell"> {{ player(id, value.status, value.name) }} </div>
            {% endfor %}
            </div>
			{{ footer() }}
		</section>
	</body>
</html>