34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<section style="background-image: url('{{ backdrop }}');" class="bg-cover bg-center">
|
|
|
|
<h1 class="text-3xl bg-yellow-400 text-center text-yellow-900 font-bold mt-6 p-6">{{ title }}</h1>
|
|
|
|
|
|
|
|
<div class="border text-center text-yellow-600 border-yellow-400 mt-8 p-3 text-xs uppercase">
|
|
{{ type:label }} Tournament • {{ start }}
|
|
</div>
|
|
<img src="{{ logo }}" class="border-2 border-yellow-400 p-1" alt="{{ logo:alt }}" />
|
|
</section>
|
|
<section class="infos">
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-8 text-sm text-yellow-400">
|
|
<div class="border border-yellow-400 p-4">
|
|
<h2 class="font-bold mb-2">Debut des qualifications</h2>
|
|
<p>{{ qualifs }}</p>
|
|
</div>
|
|
<div class="border border-yellow-400 p-4">
|
|
<h2 class="font-bold mb-2">Debut</h2>
|
|
<p>{{ start }}</p>
|
|
</div>
|
|
<div class="border border-yellow-400 p-4">
|
|
<h2 class="font-bold mb-2">Fin</h2>
|
|
<p>{{ end }}</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
<article class="space-y-4 mt-8 text-sm text-yellow-400 leading-loose">
|
|
{{ content }}
|
|
</article>
|