Yup
This commit is contained in:
@ -71,7 +71,7 @@
|
||||
</section>
|
||||
|
||||
|
||||
<section class="section" id="gallery">
|
||||
<section class="section ink top yellow" id="gallery">
|
||||
<div class="container">
|
||||
<h2 class="is-size-2 has-text-weight-bold is-uppercase block has-text-primary">Gallerie</h2>
|
||||
<div class="grid is-col-min-9">
|
||||
@ -83,45 +83,71 @@
|
||||
</section>
|
||||
|
||||
|
||||
<section class="section" id="faq">
|
||||
<section class="section has-background-primary has-text-black" id="faq">
|
||||
<div class="container">
|
||||
<h2>FAQ</h2>
|
||||
<div class="grid">
|
||||
<h2 class="is-size-2 has-text-weight-bold is-uppercase block">Infos pratiques</h2>
|
||||
|
||||
<div class="faq-list">
|
||||
{{ faqs sort="order asc" }}
|
||||
<div class="cell block">
|
||||
<h3 class="is-size-3 block">{{ question }}</h3>
|
||||
<p class="block">{{ reponse }}</p>
|
||||
</div>
|
||||
<details class="box faq-item" role="group">
|
||||
<summary class="is-size-4 has-text-weight-semibold is-uppercase" role="button" aria-expanded="false">
|
||||
<span>{{ question }}</span>
|
||||
<span class="faq-caret" aria-hidden="true">▾</span>
|
||||
</summary>
|
||||
|
||||
<div class="content mt-3 has-text-white">
|
||||
<p>{{ reponse }}</p>
|
||||
</div>
|
||||
</details>
|
||||
{{ /faqs }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<section class="section" id="tickets">
|
||||
<div class="container">
|
||||
<h2>Tickets</h2>
|
||||
<div class="grid">
|
||||
{{ collection:prices sort="order asc" }}
|
||||
<div class="cell block">
|
||||
<h3 class="is-size-3 block">{{ title }}</h3>
|
||||
<p class="block">{{ price }}</p>
|
||||
<a href="{{ hfs:lien_billetterie }}" class="button is-primary" target="_blank">Buy Ticket</a>
|
||||
<h2 class="is-size-2 has-text-weight-bold is-uppercase block has-text-primary">Tarifs</h2>
|
||||
|
||||
<div class="grid is-multiline">
|
||||
{{ collection:prices sort="order asc" limit="3" }}
|
||||
<div class="cell block has-text-centered">
|
||||
<h3 class="is-size-4 has-text-weight-bold is-uppercase mb-2">{{ title }}</h3>
|
||||
<p class="is-size-1 has-text-weight-bold mb-3">{{ price }} €</p>
|
||||
{{# <a href="{{ hfs:lien_billetterie }}" class="button is-primary is-rounded" target="_blank" aria-label="Acheter {{ title }}">Acheter</a> #}}
|
||||
</div>
|
||||
{{ /collection:prices }}
|
||||
</div>
|
||||
|
||||
<p class="mt-4">
|
||||
<a href="{{ hfs:lien_billetterie }}" class="button is-outlined is-primary is-fullwidth is-rounded" target="_blank">Voir la billetterie</a>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section" id="sponsors">
|
||||
<section class="section has-background-primary has-text-black" id="sponsors">
|
||||
<div class="container">
|
||||
<h2>Sponsors</h2>
|
||||
<div class="grid">
|
||||
{{ collection:sponsors sort="order asc" }}
|
||||
<div class="cell">
|
||||
<img src="{{ glide:logo preset='logo' }}" alt="{{ logo:alt }}">
|
||||
</div>
|
||||
{{ /collection:sponsors }}
|
||||
<h2 class="is-size-2 has-text-weight-bold is-uppercase block">Sponsors & partenaires</h2>
|
||||
|
||||
<div class="columns is-multiline is-mobile">
|
||||
{{ collection:sponsors sort="order asc" }}
|
||||
<div class="column is-half-mobile is-one-fifth-tablet" title="{{ name }}">
|
||||
{{ if link }}
|
||||
<a href="{{ link }}" target="_blank" rel="noopener noreferrer" class="partner-link" style="text-decoration:none;">
|
||||
{{ else }}
|
||||
<div class="partner-link" style="">
|
||||
{{ /if }}
|
||||
<div class="partner-box">
|
||||
<img src="{{ glide:logo preset='logo' }}" alt="{{ logo:alt }}" style="max-width:100%;max-height:100%;object-fit:contain;display:block;">
|
||||
</div>
|
||||
{{ if link }}
|
||||
</a>
|
||||
{{ else }}
|
||||
</div>
|
||||
{{ /if }}
|
||||
</div>
|
||||
{{ /collection:sponsors }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user