feat: initial commit
This commit is contained in:
commit
e106ee4c4c
17 changed files with 271 additions and 0 deletions
23
public/index.php
Normal file
23
public/index.php
Normal 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();
|
||||
|
0
public/media/index.html
Normal file
0
public/media/index.html
Normal file
Loading…
Add table
Add a link
Reference in a new issue