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

15 lines
420 B
PHP
Raw Normal View History

2021-08-30 15:17:53 +00:00
<?php
2021-09-06 06:51:21 +00:00
// This file should serve as an example showing all the current implemented features.
// Parameters that will be used in the template file
$templateParameters["title"] = "Eksempel side"; // Sets the page title
2021-08-30 15:17:53 +00:00
// Include the top of page
include_once("template/_header.php");
?>
2021-09-06 06:51:21 +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");
?>