33 lines
No EOL
1.1 KiB
PHP
33 lines
No EOL
1.1 KiB
PHP
<?php snippet('head') ?>
|
|
<?php snippet('header') ?>
|
|
|
|
|
|
<div class="filters">
|
|
<button class="filter label-tab label-tab--active active" data-target="inside-company" title="filtrer">tous les spectacles</button>
|
|
<button class="filter label-tab label-tab--active" data-target="outside-company" title="filtrer">en ce moment</button>
|
|
</div>
|
|
<ul class="events-grid">
|
|
<?php foreach ($page->children() as $event): ?>
|
|
<li
|
|
class="event-card"
|
|
data-company="<?= $event->isFromCompany() ?>"
|
|
<?= e($event->indexOf($page->children()) > 6, ' loading="lazy"') ?>
|
|
>
|
|
<a href="<?= $event->url() ?>">
|
|
<h2><?= $event->title() ?></h2>
|
|
<div class="cover-wrapper">
|
|
<div class="hover-glow"></div>
|
|
<?php snippet('picture', [
|
|
'file' => $event->cover()->toFile(),
|
|
'srcsetName' => 'event-card',
|
|
'sizes' => '(min-width: 800px) 30vw, 100vw',
|
|
'alt' => $event->title()->value(),
|
|
]) ?>
|
|
</div>
|
|
</a>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
|
|
|
|
<?php snippet('footer') ?>
|