Website/template/nations.twig

21 lines
506 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
<main class="pageContent" id="content">
<div class="container">
2023-11-26 21:40:10 +00:00
<h1>Nations</h1>
2023-09-15 21:04:00 +00:00
<ul>
{% for nation in nations %}
<li>
<a href="/nation/{{ nation.short }}">{{ nation.name }}</a>
</li>
{% endfor %}
2023-09-15 21:04:00 +00:00
</ul>
2023-09-15 14:47:56 +00:00
</div>
</main>
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}