feat: initial commit

This commit is contained in:
Stephan Plöhn 2025-08-22 10:18:22 +02:00
commit e106ee4c4c
17 changed files with 271 additions and 0 deletions

23
public/index.php Normal file
View file

@ -0,0 +1,23 @@
<?php
require __DIR__ . '/../vendor/autoload.php';
use Kirby\Cms\App as Kirby;
$kirby = new Kirby(
[
'roots' => [
'index' => __DIR__,
'base' => $base = dirname(__DIR__),
'content' => $base . '/content',
'site' => $base . '/site',
'storage' => $storage = $base . '/storage',
'accounts' => $storage . '/accounts',
'cache' => $storage . '/cache',
'sessions' => $storage . '/sessions',
]
]
);
echo $kirby->render();