1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
php-e107/e107_themes/templates/sitedown_template.php

44 lines
1.6 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2009-11-12 15:01:36 +00:00
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_themes/templates/sitedown_template.php,v $
* $Revision: 1.7 $
* $Date: 2009-11-12 15:01:35 $
* $Author: marj_nl_fr $
*/
2006-12-02 04:36:16 +00:00
if (!defined('e107_INIT')) { exit; }
// ##### SITEDOWN TABLE -----------------------------------------------------------------
2007-12-06 21:36:02 +00:00
if(!isset($SITEDOWN_TABLE))
{
2009-07-19 11:44:30 +00:00
$SITEDOWN_TABLE = (defined("STANDARDS_MODE") ? "" : "<?xml version='1.0' encoding='utf-8' "."?".">")."<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">
2006-12-02 04:36:16 +00:00
";
$SITEDOWN_TABLE .= "
<html xmlns='http://www.w3.org/1999/xhtml'".(defined("TEXTDIRECTION") ? " dir='".TEXTDIRECTION."'" : "").(defined("CORE_LC") ? " xml:lang=\"".CORE_LC."\"" : "").">
<head>
2009-07-19 11:44:30 +00:00
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta http-equiv='content-style-type' content='text/css' />\n
2007-01-20 15:49:21 +00:00
<link rel='stylesheet' href='".THEME_ABS."style.css' type='text/css' media='all' />
2006-12-02 04:36:16 +00:00
<title>{SITEDOWN_TABLE_PAGENAME}</title>
</head>
<body>
<div style='text-align:center;font-size: 14px; color: black; font-family: Tahoma, Verdana, Arial, Helvetica; text-decoration: none'>
<div style='text-align:center'>{LOGO}</div>
<hr />
<br />
{SITEDOWN_TABLE_MAINTAINANCETEXT}
</div>
</body>
</html>";
}
// ##### ------------------------------------------------------------------------------------------
?>