Fix spelling mistake in example.php

This commit is contained in:
Willy 2021-09-06 08:51:21 +02:00
parent c1bf3cc841
commit 7f930ff544
2 changed files with 7 additions and 14 deletions

View File

@ -1,21 +1,14 @@
<?php
// Parameters that will used in the template file
$templateParameters["title"] = "Eksempel";
// 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
// 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>
<h4>Dette er en eksempel side.</h4>
<br>
<p>Dette er en eksempel side.</p>
<h1>Eksempel side</h1>
<p>Dette er en eksempel side</p>
<?php
// Include the rest of the page
include_once("template/_footer.php");

View File

@ -1,5 +1,5 @@
<?php
// Parameters that will used in the template file
// Parameters that will be used in the template file
$templateParameters["title"] = "Forside";
// Include the top of page