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

8 lines
213 B
PHP
Raw Normal View History

2022-01-14 06:43:31 +00:00
<?php
2022-01-19 19:16:09 +00:00
$app = require '../app/inc.php';
2022-01-14 06:43:31 +00:00
2022-01-19 18:50:54 +00:00
$model = $app->model('Index');
2022-01-14 06:43:31 +00:00
2022-01-19 18:50:54 +00:00
$app->view('template/header', ["title" => "Forside"]);
2022-01-23 21:56:36 +00:00
$app->view('index', ["data" => $model->getUsername()]);
2022-01-19 18:50:54 +00:00
$app->view('template/footer');