e189779a5b
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.
16 lines
322 B
PHP
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() ?>
|