CRSSWebsite/template/nation.twig

54 lines
1.1 KiB
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-06-03 01:54:49 +00:00
2024-01-11 19:38:35 +00:00
<main class="pageContent container">
2024-06-03 01:54:49 +00:00
<div class="nationLayout">
<div class="nationCoreInfo">
<h1> {{ nation.name }} </h1>
<p style="font-family:monospace"> {{ nation.short }} </p>
<img class="nationFlag" src="{{ nation.flag }}" alt="{{ nation.name }}'s flag." />
</div>
<div class="nationCoreInfo">
<h3> Description </h3>
<p> {{ nation.description }} </p>
</div>
</div>
2023-11-28 08:35:31 +00:00
</main>
2024-06-03 02:01:23 +00:00
<style>
/* TCF PLEASE MOVE THIS TO THE CORRECT CSS FILE, I AM TOO LAZY */
@media (max-width: 800px) {
2024-06-03 02:01:23 +00:00
.nationLayout {
display: flex;
flex-direction: column;
}
}
@media (min-width: 801px) {
2024-06-03 02:01:23 +00:00
.nationLayout {
display: flex;
flex-direction: row;
gap: 1rem;
2024-06-03 02:01:23 +00:00
}
}
.nationFlag {
border-radius: 12px;
}
.nationCoreInfo {
flex-grow: 1;
2024-06-03 02:03:38 +00:00
flex-basis: 250px;
2024-06-03 02:01:23 +00:00
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
</style>
2023-11-28 08:35:31 +00:00
{% include 'includes/footer.twig' %}
{% include 'includes/foot.twig' %}