This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/index.php
2022-01-19 20:16:09 +01:00

10 lines
219 B
PHP

<?php
$app = require '../app/inc.php';
$model = $app->model('Index');
$app->view('template/header', ["title" => "Forside"]);
$app->view('index', [
"data" => $model->getUsername()
]);
$app->view('template/footer');