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

10 lines
258 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?php /** @var \Kirby\Cms\Block $block */ ?>
2021-11-18 17:44:47 +01:00
<?php if ($video = 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 ?>