decor-6-site/site/snippets/blocks/imagefloat.php

20 lines
388 B
PHP
Raw Normal View History

2026-03-08 11:09:35 +01:00
<?php
/** @var \Kirby\Cms\Block $block */
$alt = $block->alt();
$caption = $block->caption();
$src = $block->image()->toFile()->url();
?>
<?php if ($src): ?>
<figure class="float-image">
2026-03-08 11:09:35 +01:00
<img src="<?= $src ?>" alt="<?= $alt->esc() ?>">
<?php if ($caption->isNotEmpty()): ?>
<figcaption>
<?= $caption->kt() ?>
</figcaption>
<?php endif ?>
</figure>
<?php endif ?>