Initial commit

This commit is contained in:
KirbyCMS Deploy
2026-04-15 11:50:31 +00:00
commit 0a8c107828
1114 changed files with 203788 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
<?php $kirby->response()->code(404); // set status code
echo $site->errorPage()->render(); // render 404 if unmatched template

View File

@@ -0,0 +1,3 @@
<?php
require __DIR__ . '/layout.php';

View File

@@ -0,0 +1,3 @@
<?php
require __DIR__ . '/layout.php';

View File

@@ -0,0 +1,11 @@
<?php
/**
* @var Kirby\Cms\App $kirby
* @var Kirby\Cms\Page $page
* @var Kirby\Cms\Site $site
*/
snippet('layout', slots: true); ?>
<?= $page->blocks()->toBlocks() ?>
<?php endsnippet() ?>