nouveau-theatre-de-besancon/site/snippets/event-card.php
2024-07-31 12:09:03 +02:00

23 lines
No EOL
913 B
PHP

<div class="event-card grid__item" style="--span: <?= $span ?>">
<a href="<?= $event->url() ?>" title="Voir l'événément">
<?php snippet('picture', ["file" => $event->gallery()->toFiles()->first()]) ?>
</a>
<div class="event-card__infos">
<div>
<a href="<?= $event->url() ?>" title="Voir l'événément">
<h5><?= $event->title() ?></h5>
</a>
<?php if ($event->isMapadoEvent() == 'true'): ?>
<?php snippet('ticket', ['link' => option('ticketingUrl') . 'event/' . $event->mapadoSlug()]) ?>
<?php endif ?>
</div>
<div>
<div class="event-card__authors">
<a href="<?= $event->url() ?>" title="Voir l'événément">
<?= $event->authors() ?>
</a>
</div>
<a href="<?= $event->url() ?>" title="Voir l'événément"><p><?= $event->schedule() ?></p></a>
</div>
</div>
</div>