18 lines
505 B
PHP
18 lines
505 B
PHP
<?php
|
|
// This file should serve as an example showing current implemented features
|
|
|
|
// Parameters that will be used in the template files
|
|
// For more options and explanations, check the 'templateParameters.php' file from the 'template' folder
|
|
$templateParameters["title"] = "Eksempel side";
|
|
|
|
// 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");
|
|
?>
|