Fix spelling mistake in example.php
This commit is contained in:
parent
c1bf3cc841
commit
7f930ff544
19
example.php
19
example.php
@ -1,21 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
// Parameters that will used in the template file
|
// This file should serve as an example showing all the current implemented features.
|
||||||
$templateParameters["title"] = "Eksempel";
|
|
||||||
|
// Parameters that will be used in the template file
|
||||||
|
$templateParameters["title"] = "Eksempel side"; // Sets the page title
|
||||||
|
|
||||||
// Include the top of page
|
// Include the top of page
|
||||||
include_once("template/_header.php");
|
include_once("template/_header.php");
|
||||||
?>
|
?>
|
||||||
|
<h1>Eksempel side</h1>
|
||||||
<h1>Dette er en eksempel side.</h1>
|
<p>Dette er en eksempel side</p>
|
||||||
<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>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// Include the rest of the page
|
// Include the rest of the page
|
||||||
include_once("template/_footer.php");
|
include_once("template/_footer.php");
|
||||||
|
Reference in New Issue
Block a user