<?php
// Parameters that will used in the template file
$templateParameters["title"] = "Eksempel";
// Include the top of page
include_once("template/_header.php");
?>
<h1>Dette er en eksempel side.</h1>
<br>
<h2>Dette er en eksempel side.</h2>
<h3>Dette er en eksempel side.</h3>
<h4>Dette er en eksempel side.</h4>
<p>Dette er en eksempel side.</p>
// Include the rest of the page
include_once("template/_footer.php");