20 lines
204 B
PHP
20 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* home.php
|
||
|
*
|
||
|
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
||
|
*/
|
||
|
|
||
|
use wishthis\Page;
|
||
|
|
||
|
$page = new page(__FILE__, 'Home');
|
||
|
$page->header();
|
||
|
?>
|
||
|
|
||
|
<h1>Hello</h1>
|
||
|
|
||
|
<?php
|
||
|
$page->footer();
|
||
|
?>
|