julienmonnerie/kirby/config/blocks/video/video.php

14 lines
285 B
PHP
Raw Normal View History

2022-08-31 15:02:43 +02:00
<?php
use Kirby\Cms\Html;
/** @var \Kirby\Cms\Block $block */
?>
<?php if ($video = Html::video($block->url())): ?>
2022-06-17 17:51:59 +02:00
<figure>
<?= $video ?>
<?php if ($block->caption()->isNotEmpty()): ?>
<figcaption><?= $block->caption() ?></figcaption>
<?php endif ?>
</figure>
<?php endif ?>