Files
lichterei-web/kirby/config/blocks/video/video.php
Bastian Allgeier 99c36fa137 Upgrade to 3.5.1
2021-01-19 12:20:38 +01:00

10 lines
270 B
PHP
Executable File

<?php /** @var \Kirby\Cms\Block $block */ ?>
<?php if ($block->url()->isNotEmpty()): ?>
<figure>
<?= video($block->url()) ?>
<?php if ($block->caption()->isNotEmpty()): ?>
<figcaption><?= $block->caption() ?></figcaption>
<?php endif ?>
</figure>
<?php endif ?>