wishthis/includes/pages/home.php

36 lines
751 B
PHP
Raw Normal View History

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">
2022-01-17 13:52:00 +00:00
<h1 class="ui header"><?= $page->title ?></h1>
2022-01-14 07:41:03 +00:00
<div class="ui segment">
2022-01-17 12:16:11 +00:00
<h2 class="ui header">Welcome to wishthis</h2>
2022-01-14 07:41:03 +00:00
<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();
?>