decor-6-site/site/snippets/blocks/image.php
2026-03-24 00:46:25 +01:00

20 lines
416 B
PHP

<?php
/** @var \Kirby\Cms\Block $block */
$alt = $block->alt();
$caption = $block->caption();
$src = $block->image()->toFile()->url();
?>
<?php if ($src): ?>
<figure class="print-image full-page <?= $block->taille()->esc() ?>">
<img src="<?= $src ?>" alt="<?= $alt->esc() ?>">
<?php if ($caption->isNotEmpty()): ?>
<figcaption>
<?= $caption->kt() ?>
</figcaption>
<?php endif ?>
</figure>