Website/template/nations.twig

22 lines
597 B
Twig
Raw Normal View History

2023-09-15 14:47:56 +00:00
{% include 'includes/head.twig' with {'pageTitle': 'Nations'} %}
2023-11-18 12:23:34 +00:00
{% include 'includes/hero.twig' %}
2023-09-15 14:47:56 +00:00
2023-09-15 21:04:00 +00:00
{% include 'includes/nav.twig' with {'page': 'nations'} %}
2023-09-15 14:47:56 +00:00
2024-01-11 19:38:35 +00:00
<main class="pageContent container">
<h1>Nations</h1>
<div class="cards">
2024-01-11 19:38:35 +00:00
{% for nation in nations %}
<a class="card transitionEnabled" href="/nation/{{ nation.short }}">
<h1>{{ nation.name }}</h1>
2024-04-07 06:10:23 +00:00
<p>{{ nation.short_description }}</p>
<img class="icon" src="{{ nation.flag }}">
</a>
2024-01-11 19:38:35 +00:00
{% endfor %}
</div>
2023-09-15 14:47:56 +00:00
</main>
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}