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

21 lines
416 B
PHP
Raw Normal View History

2026-01-05 19:33:15 +01:00
<?php
/** @var \Kirby\Cms\Block $block */
$alt = $block->alt();
$caption = $block->caption();
2026-02-21 17:52:13 +01:00
$src = $block->image()->toFile()->url();
2026-01-05 19:33:15 +01:00
?>
2026-02-21 17:52:13 +01:00
2026-01-05 19:33:15 +01:00
<?php if ($src): ?>
<figure class="print-image full-page <?= $block->taille()->esc() ?>">
2026-02-21 17:52:13 +01:00
2026-01-05 19:33:15 +01:00
<img src="<?= $src ?>" alt="<?= $alt->esc() ?>">
2026-02-21 17:52:13 +01:00
<?php if ($caption->isNotEmpty()): ?>
<figcaption>
<?= $caption->kt() ?>
</figcaption>
2026-01-05 19:33:15 +01:00
<?php endif ?>
2026-02-21 17:52:13 +01:00
</figure>