mmk2410.org/site/snippets/scribble.php
Marcel Kapfer 0d40b85f76
All checks were successful
Deploy / deploy (push) Successful in 3s
Add scribbles
2025-01-31 22:04:40 +01:00

21 lines
447 B
PHP

<?php
/**
* @var ScribblePage $scribble
* @var bool $singlePage
*/
$headlineLevel = $singlePage ? 1 : 2;
$title = $scribble->date()->toDate('j. F Y @ h:i');
?>
<article class="scribble">
<h<?= $headlineLevel ?>>
<?php if (!$singlePage): ?>
<a href="<?= $scribble->url() ?>"><?= $title ?></a>
<?php else: ?>
<?= $title ?>
<?php endif ?>
</h<?= $headlineLevel ?>>
<?= $scribble->text()->kirbytext() ?>
</article>