17 lines
No EOL
663 B
PHP
17 lines
No EOL
663 B
PHP
<div class="event-card grid__item" style="--span: <?= $span ?>">
|
|
<a href="<?= $event->url() ?>" title="Voir le détail">
|
|
<?php snippet('picture', ["file" => $event->gallery()->toFiles()->first()]) ?>
|
|
<div class="event-card__infos">
|
|
<div>
|
|
<h5><?= $event->title() ?></h5>
|
|
<?php if ($event->isMapadoEvent() == 'true'): ?>
|
|
<?php snippet('ticket', ['link' => 'https://cdn-besancon.mapado.com/event/' . $event->mapadoSlug()]) ?>
|
|
<?php endif ?>
|
|
</div>
|
|
<div>
|
|
<div class="event-card__authors"><?= $event->authors() ?></div>
|
|
<p><?= $event->schedule() ?></p>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|