89debde29c
Adds a new page for chess analysis, powered by lichess.org, and integrates it into the navigation menu. Also adds daily puzzle snippet to home page. Updates hero image to correct gif.
16 lines
332 B
PHP
16 lines
332 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 snippet('puzzle'); ?>
|
|
|
|
<?php endsnippet(); ?>
|