2021-11-04 22:50:57 +01:00
|
|
|
{% extends "../templates/basic.njk" %}
|
|
|
|
{% import "../components/_map.njk" as mapComponent %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<title>DDStats - Maps!</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/maps.css">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2021-11-05 10:32:06 +01:00
|
|
|
<main class="flex-container">
|
2021-11-04 22:50:57 +01:00
|
|
|
{% for map in data.maps %}
|
|
|
|
{{ mapComponent.card(map) }}
|
|
|
|
{% endfor %}
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|