2024-07-31 07:19:10 +02:00
|
|
|
<div class="event-card grid__item" style="--span: <?= $span ?>">
|
|
|
|
|
<?php snippet('picture', ["file" => $event->gallery()->toFiles()->first()]) ?>
|
|
|
|
|
<div class="event-card__infos">
|
|
|
|
|
<div>
|
|
|
|
|
<h5><?= $event->title() ?></h5>
|
2024-07-31 07:59:51 +02:00
|
|
|
<?php if ($event->isMapadoEvent() == 'true'): ?>
|
|
|
|
|
<?php snippet('ticket', ['link' => 'https://cdn-besancon.mapado.com/event/' . $event->mapadoSlug()]) ?>
|
|
|
|
|
<?php endif ?>
|
2024-07-31 07:19:10 +02:00
|
|
|
</div>
|
|
|
|
|
<div>
|
2024-07-31 07:59:51 +02:00
|
|
|
<div class="event-card__authors"><?= $event->authors() ?></div>
|
2024-07-31 07:19:10 +02:00
|
|
|
<p><?= $event->schedule() ?></p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-30 19:03:01 +02:00
|
|
|
</div>
|