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

10 lines
216 B
PHP
Executable File

<?php /** @var \Kirby\Cms\Block $block */ ?>
<blockquote>
<?= $block->text() ?>
<?php if ($block->citation()->isNotEmpty()): ?>
<footer>
<?= $block->citation() ?>
</footer>
<?php endif ?>
</blockquote>