<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright © 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Name: Home
| Version: 1.00
| File Name: home.php
| Author: Fangree Productions
| Site: http://www.fangree.co.uk
| Contact: admin@fangree.co.uk
| Developers: Fangree_Craig
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once "maincore.php";
require_once THEMES."templates/header.php";
if (file_exists(INFUSIONS."fp_news_panel/locale/".$settings['locale'].".php")) {
include INFUSIONS."fp_news_panel/locale/".$settings['locale'].".php";
} else {
include INFUSIONS."fp_news_panel/locale/English.php";
}

add_to_title($locale['global_200'].$locale['home']);

require_once THEMES."templates/footer.php";
?>