16 lines
499 B
PHP
16 lines
499 B
PHP
<?php
|
|
// This file should serve as an example showing all the current implemented features.
|
|
|
|
// Parameters that will be used in the template file
|
|
$templateParameters["render"] = true; // Whether or not to render the template
|
|
$templateParameters["title"] = "Eksempel side"; // Sets the page title
|
|
|
|
// Include the top of page
|
|
include_once("template/_header.php");
|
|
?>
|
|
<h1>Eksempel side</h1>
|
|
<p>Dette er en eksempel side</p>
|
|
<?php
|
|
// Include the rest of the page
|
|
include_once("template/_footer.php");
|
|
?>
|