Create wishlists-saved.php
This commit is contained in:
parent
4d004d55b5
commit
1cc48ca4be
1 changed files with 28 additions and 0 deletions
28
src/pages/wishlists-saved.php
Normal file
28
src/pages/wishlists-saved.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Template for wishlists.
|
||||
*
|
||||
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
||||
*/
|
||||
|
||||
use wishthis\{Page, User, Wishlist};
|
||||
|
||||
$page = new Page(__FILE__, __('Saved lists'));
|
||||
$page->header();
|
||||
$page->bodyStart();
|
||||
$page->navigation();
|
||||
?>
|
||||
<main>
|
||||
<div class="ui container">
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
|
||||
<div class="ui segment">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<?php
|
||||
$page->footer();
|
||||
$page->bodyEnd();
|
Loading…
Reference in a new issue