15 lines
303 B
PHP
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");
|
|
?>
|