mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_themes/templates/sitedown_template.php,v $
|
|
| $Revision: 1.5 $
|
|
| $Date: 2007-12-06 21:35:55 $
|
|
| $Author: e107steved $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
// ##### SITEDOWN TABLE -----------------------------------------------------------------
|
|
if(!isset($SITEDOWN_TABLE))
|
|
{
|
|
$SITEDOWN_TABLE = (defined("STANDARDS_MODE") ? "" : "<?xml version='1.0' encoding='".CHARSET."' "."?".">")."<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">
|
|
";
|
|
$SITEDOWN_TABLE .= "
|
|
<html xmlns='http://www.w3.org/1999/xhtml'".(defined("TEXTDIRECTION") ? " dir='".TEXTDIRECTION."'" : "").(defined("CORE_LC") ? " xml:lang=\"".CORE_LC."\"" : "").">
|
|
<head>
|
|
<meta http-equiv='content-type' content='text/html; charset=".CHARSET."' />
|
|
<meta http-equiv='content-style-type' content='text/css' />\n
|
|
<link rel='stylesheet' href='".THEME_ABS."style.css' type='text/css' media='all' />
|
|
<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>";
|
|
}
|
|
// ##### ------------------------------------------------------------------------------------------
|
|
|
|
?>
|