<?php
// =======================================================================
// Module name: Default Theme Template
// File name: default_theme.php
// Version: 1.0
// Description: This script contains php code for the website default
// theme layout.
//
// Comments are included within this script to document changes made to
// the code with each new version of the script. Each comment also lists
// the author's initials to document who made the changes to the code.
//
// Copyright (C) 2006-2010 Dustin Cowell Enterprises
//
// License: GNU General Public License, Version 2
//
// Link: http://www.gnu.org/licenses/gpl-2.0.txt
//
// 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:
//
// Free Software Foundation, Inc.
// 51 Franklin Street, Fifth Floor
// Boston, MA 02110-1301 USA
// =======================================================================
?>
<html>
<head>
<?php include($phpincdir . $meta); ?>
</head>
<body bgcolor="<?php echo $db_themes_background_color_page ?>">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="775">
<tr>
<td>
<center>
<table border="0" cellpadding="10" cellspacing="0" width="100%">
<tr>
<td valign="top" align="left" bgcolor="<?php echo $db_themes_background_color_header ?>">
<center><?php include($phpincdir . $header); ?></center>
</td>
</tr>
</table>
<table border="0" cellpadding="10" cellspacing="0" width="100%">
<tr>
<td valign="top" align="left" width="15%" bgcolor="<?php echo $db_themes_background_color_menu ?>">
<?php include($phpincdir . $menu_left); ?>
</td>
<td valign="top" align="left" width="70%" bgcolor="<?php echo $db_themes_background_color_body ?>">
<?php include($phpincdir . $body); ?>
</td>
<?php include($phpincdir . $menu_right); ?>
</tr>
</table>
<table border="0" cellpadding="10" cellspacing="0" width="100%">
<tr>
<td valign="top" align="left" bgcolor="<?php echo $db_themes_background_color_header ?>">
<center><?php include($phpincdir . $footer); ?></center>
</td>
</tr>
</table>
</center>
</td>
</tr>
</table>
</center>
</body>
</html>