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

15 lines
303 B
PHP
Raw Normal View History

2022-01-14 06:43:31 +00:00
<?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");
?>