decor-6-site/site/snippets/blocks/image.php
2026-04-12 16:46:06 +02:00

21 lines
391 B
PHP

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