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

18 lines
505 B
PHP
Raw Normal View History

2021-08-30 15:17:53 +00:00
<?php
2021-09-11 18:12:29 +00:00
// This file should serve as an example showing current implemented features
2021-09-06 06:51:21 +00:00
2021-09-11 18:12:29 +00:00
// 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";
2021-08-30 15:17:53 +00:00
// Include the top of page
include_once("template/_header.php");
?>
2021-09-11 18:12:29 +00:00
<h1>Eksempel side.</h1>
<p>Dette er en eksempel side</p>
2021-08-30 15:17:53 +00:00
<?php
// Include the rest of the page
include_once("template/_footer.php");
?>