2021-11-12 15:23:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* home.php
|
|
|
|
*
|
|
|
|
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
|
|
|
*/
|
|
|
|
|
|
|
|
use wishthis\Page;
|
|
|
|
|
|
|
|
$page = new page(__FILE__, 'Home');
|
|
|
|
$page->header();
|
2022-01-14 07:41:03 +00:00
|
|
|
$page->navigation();
|
2021-11-12 15:23:48 +00:00
|
|
|
?>
|
|
|
|
|
2021-11-12 16:01:04 +00:00
|
|
|
<main>
|
2022-01-14 07:41:03 +00:00
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui segment">
|
|
|
|
<h1 class="ui header">Welcome to wishthis</h1>
|
|
|
|
<p>
|
|
|
|
wishthis is a simple, intuitive and modern plattform to create,
|
|
|
|
manage and view your wishes for any kind of occasion.
|
|
|
|
</p>
|
2022-01-14 07:41:53 +00:00
|
|
|
<p>
|
|
|
|
Go ahead and get started now and <a href="/?page=wishlist-create">create a wishlist</a>!
|
|
|
|
</p>
|
2022-01-14 07:41:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-12 16:01:04 +00:00
|
|
|
</main>
|
2021-11-12 15:23:48 +00:00
|
|
|
|
|
|
|
<?php
|
|
|
|
$page->footer();
|
|
|
|
?>
|