nouveau-theatre-de-besancon/site/snippets/callout.php
2024-11-04 17:32:12 +01:00

8 lines
No EOL
420 B
PHP

<?php foreach($site->callout()->toStructure() as $callout): ?>
<section class="callout" style="--color: <?= $callout->color() ?>;">
<?= $callout->text() ?>
<?php if ($callout->ticket()->isNotEmpty()): ?>
<a class="ticket-link" href="<?= $callout->ticket() ?>" target="_blank" title="Aller à la billetterie"><?php snippet('ticket') ?> Billetterie</a>
<?php endif ?>
</section>
<?php endforeach ?>