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