<?
/*
WBBlog - Single User Blog
Version 1.0
Michael Lintz - LIQUA Web Solutions
hide@address.com - http://www.liqua.com
Copyright (C) 2005
This program is free software; you can redistribute it and/or modify it under the terms of
the GNU General Public License as published by the Free Software Foundation; either version
2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program;
if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
session_start();
header("Cache-control: private");
include($_SERVER['DOCUMENT_ROOT'].'/wbblog/inc/config.inc.php');
include($_SERVER['DOCUMENT_ROOT'].'/wbblog/inc/init.inc.php');
//Generates page load time
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
?>
<?
//********** Content Code Section Begin ********************************
?>
<?
//Home Page
include './inc/home.inc.php';
//Category Page
include './inc/category.inc.php';
//Archive Page
include './inc/archive.inc.php';
//Author Page
include './inc/author.inc.php';
//CalEntry Page
include './inc/calentry.inc.php';
//Delete Entry Page
include './inc/dayentry.inc.php';
//View Entry Page
include './inc/viewentry.inc.php';
//Search Results Page
include './inc/search.inc.php';
?>
<?
// ******** ADMIN SECTION START ****************************************
?>
<?
//Default Login
include './inc/login.inc.php';
//Login Error
include './inc/loginerror.inc.php';
//Logout Message Confirm
include './inc/logout.inc.php';
//Admin Home
include './inc/adminhome.inc.php';
//Add Entry Page
include './inc/addentry.inc.php';
//List Entry
include './inc/listentry.inc.php';
//Delete Entry
include './inc/delentry.inc.php';
//Edit Entry
include './inc/editentry.inc.php';
?>
<?
// ******** ADMIN SECTION END ******************************************
?>
<?
// ********** Content Code Section End ****************************
?>
</td>
<td id="SideBar">
<?
//Side Bar Section Code Begin
include './inc/sidebar.inc.php';
?>
</td>
</tr>
<tr>
<td id="FooterContent">
<!-- ********** Footer begin ***************************************************** -->
<?
include './inc/footer.inc.php';
?>
<!-- ********** Footer end ***************************************************** -->
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>