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
|
||||
// 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");
|
||||
|
Reference in New Issue
Block a user