kirby-moin/public/index.php

24 lines
496 B
PHP
Raw Normal View History

2025-08-22 10:18:22 +02:00
<?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();