Website/template/nation.twig
2024-06-03 02:57:46 +02:00

16 lines
528 B
Twig

{% include 'includes/head.twig' with {'pageTitle': nation.name} %}
{% include 'includes/hero.twig' %}
{% include 'includes/nav.twig' with {'page': 'nation'} %}
<main class="pageContent container">
<h1> {{ nation.name }} </h1>
<p style="font-family:monospace"> {{ nation.short }} </p>
<hr>
<img style="border-radius: 12px" height="128px" src="{{ nation.flag }}" alt="{{ nation.name }}'s flag." />
<p> {{ nation.description }} </p>
</main>
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}