2024-04-04 20:49:25 -04:00
|
|
|
<?php
|
2024-04-06 11:02:48 -04:00
|
|
|
/**
|
|
|
|
* Home Page
|
|
|
|
*
|
|
|
|
* Displays a list of unread feed items for the current user
|
|
|
|
*/
|
|
|
|
|
2024-04-04 20:49:25 -04:00
|
|
|
include '../start.php';
|
|
|
|
|
2024-04-05 22:14:24 -04:00
|
|
|
Security::verifyUser();
|
|
|
|
|
2024-04-11 22:01:36 -04:00
|
|
|
page_head('Welcome'); ?>
|
|
|
|
<p>Unread items go here</p><?php
|
2024-04-04 20:49:25 -04:00
|
|
|
page_foot();
|