xiaowang/kirby/config/blocks/video/video.php

14 lines
285 B
PHP
Raw Normal View History

2022-08-31 16:08:03 +02:00
<?php
use Kirby\Cms\Html;
/** @var \Kirby\Cms\Block $block */
?>
<?php if ($video = Html::video($block->url())): ?>
2021-10-29 18:05:46 +02:00
<figure>
2021-11-18 17:44:47 +01:00
<?= $video ?>
2021-10-29 18:05:46 +02:00
<?php if ($block->caption()->isNotEmpty()): ?>
<figcaption><?= $block->caption() ?></figcaption>
<?php endif ?>
</figure>
<?php endif ?>