actuel-inactuel/site/snippets/blocks/quote.php
isUnknown e425d6d141 add quote block, cite custom mark, and blockquote styles
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 08:08:27 +01:00

9 lines
No EOL
257 B
PHP

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