Website/template/nation.twig

16 lines
528 B
Twig
Raw Normal View History

2023-11-28 08:35:31 +00:00
{% include 'includes/head.twig' with {'pageTitle': nation.name} %}
{% include 'includes/hero.twig' %}
{% include 'includes/nav.twig' with {'page': 'nation'} %}
2024-01-11 19:38:35 +00:00
<main class="pageContent container">
2024-06-03 00:57:46 +00:00
<h1> {{ nation.name }} </h1>
<p style="font-family:monospace"> {{ nation.short }} </p>
2024-06-03 00:56:31 +00:00
<hr>
2024-06-03 00:57:46 +00:00
<img style="border-radius: 12px" height="128px" src="{{ nation.flag }}" alt="{{ nation.name }}'s flag." />
<p> {{ nation.description }} </p>
2023-11-28 08:35:31 +00:00
</main>
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}