Add example file.

This commit is contained in:
2022-11-08 15:58:20 +01:00
parent 7c1aec3497
commit 805139d2ca
10 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<?php
$title = "Home";
include("templates/header.html.php");
?>
<p>
Hello, World! This is an example page.
</p>
<?php
include("templates/footer.html.php");
?>