8 lines
No EOL
420 B
PHP
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() == 'true'): ?>
|
|
<a class="ticket-link" href="<?= option('ticketingUrl') ?>" target="_blank" title="Aller à la billetterie"><?php snippet('ticket') ?> Billetterie</a>
|
|
<?php endif ?>
|
|
</section>
|
|
<?php endforeach ?>
|