mmk2410.org/site/snippets/scribble.php

22 lines
447 B
PHP
Raw Normal View History

2025-01-31 22:04:40 +01:00
<?php
/**
* @var ScribblePage $scribble
* @var bool $singlePage
*/
$headlineLevel = $singlePage ? 1 : 2;
2025-02-06 21:28:06 +01:00
$title = $scribble->date()->toDate('j. F Y @ H:i');
2025-01-31 22:04:40 +01:00
?>
<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>