CRSSWebsite/template/nations.twig

19 lines
452 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>
<ul>
{% for nation in nations %}
<li>
<a href="/nation/{{ nation.short }}">{{ nation.name }}</a>
</li>
{% endfor %}
</ul>
2023-09-15 14:47:56 +00:00
</main>
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}