Files
summer-cms/resources/views/tournaments/show.antlers.html
2026-01-26 16:57:35 +01:00

65 lines
2.1 KiB
HTML

<section style="background-image: url('{{ glide:backdrop blur="20" }}');"
class="has-text-centered"
id="tournament-header"
>
<img src="{{ glide:logo preset="logo_large" }}" class="my-6" alt="{{ logo:alt }}" />
</section>
<section class="grid is-col-min-16 is-gap-4 my-6 container" id="tournament-info">
<div class="cell">
<div class="has-text-weight-bolder is-uppercase is-size-1 has-text-primary">
{{ title }}
</div>
<div class="has-text-white block is-size-4 mb-6">
Tournoi {{ type:label }}
</div>
<div>
<span class="tag is-large is-primary has-text-weight-bolder is-uppercase block">
Début des qualifications
</span>
<span>{{ qualifs ?? 'TBA' }}</span>
</div>
<div>
<span class="tag is-large is-primary has-text-weight-bolder is-uppercase block">
Début du tournoi
</span>
<span>{{ start format="d/m/Y hh:mm" ?? 'TBA' }}</span>
</div>
<div class="mb-6">
<span class="tag is-large is-primary has-text-weight-bolder is-uppercase block">
Fin du tournoi
</span>
<span>{{ end ?? 'TBA' }}</span>
</div>
<div class="block content">
{{ description }}
</div>
</div>
<div class="cell">
{{ if video }}
<div class="has-text-weight-bolder is-uppercase is-size-3 has-text-primary block">
Replay
</div>
<iframe src="{{ video | embed_url }}" class="is-fullwidth block mb-6" style="width:100%;aspect-ratio: 16/9;"></iframe>
{{ /if }}
{{ if guests }}
<div class="has-text-weight-bolder is-uppercase is-size-3 has-text-primary block">
Guests
</div>
<div class="fixed-grid has-2-cols is-gap-4">
<div class="grid ">
{{ guests }}
{{ partial:_guest }}
{{ /guests }}
</div>
</div>
</div>
{{ /if }}
</div>
</section>