23 lines
No EOL
913 B
PHP
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>
|