Website/template/nation.twig
Lupancham 8925d91e59 Minor Change to nation.twig & change TTK flag link to the one in the CRSS repo
Flag didn't look with the word "Flag:" beside the flag image.
2024-04-25 13:49:26 -04:00

28 lines
595 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">
<ul>
<li>
code: {{ nation.short }}
</li>
<li>
name: {{ nation.name }}
</li>
<li>
flag:
</li>
<li>
<img height="48px" src="{{ nation.flag }}" alt="{{ nation.name }}'s flag." />
</li>
<li>
description: {{nation.description}}
</li>
</ul>
</main>
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}