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/example.php
2022-01-14 07:43:31 +01:00

15 lines
303 B
PHP

<?php
// This file should serve as an example showing current implemented features.
require("../app/common.php");
// Include the top of page
$template->render("header");
?>
<h1>Eksempel side</h1>
<p>Dette er en eksempel side</p>
<?php
// Include the bottom of the page
$template->render("footer");
?>