This repository has been archived on 2023-01-08. You can view files and clone it, but cannot push or open issues or pull requests.
stafett-for-livet/example.php
2021-10-09 22:01:18 +02:00

19 lines
503 B
PHP

<?php
// This file should serve as an example showing current implemented features
require_once("app/common.php");
// Parameters that will be used in the template files
// For more options and explanations, check the 'app/template.php' file
$templateParameters["title"] = "Eksempel side";
// Include the top of page
require_once("template/_header.php");
?>
<h1>Eksempel side</h1>
<p>Dette er en eksempel side</p>
<?php
// Include the rest of the page
require_once("template/_footer.php");
?>