Files
schachfreunde-badsteben/site/templates/home.php
T
tfeigel e189779a5b feat: update homepage text and layout with new introduction
Added a welcoming introduction for Schachfreunde Bad Steben to the homepage text. Replaced generic "Hallo Welt!" heading with "Herzlich Willkommen!". Integrated dynamic text rendering using `kirbytext()` for better content management.
2025-07-13 18:29:15 +02:00

16 lines
322 B
PHP

<?php snippet('layout', slots: true) ?>
<h1>Herzlich Willkommen!</h1>
<?= $page->text()->kirbytext() ?>
<?php snippet('home-news', [
'news' => page('news')
->children()
->limit(3)
->sortBy('date', 'desc')
]) ?>
<?php snippet('home-termine') ?>
<?php endsnippet() ?>