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

22 lines
482 B
PHP
Raw Normal View History

2021-08-30 15:17:53 +00:00
<?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>
<br>
<h3>Dette er en eksempel side.</h3>
<br>
2021-09-01 11:23:50 +00:00
<h4>Dette er en eksempel side.</h4>
<br>
<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");
?>