2006-12-02 04:36:16 +00:00
< ? php
/*
2009-11-12 15:01:36 +00:00
* e107 website system
*
2009-11-18 01:06:08 +00:00
* Copyright ( C ) 2008 - 2009 e107 Inc ( e107 . org )
2009-11-12 15:01:36 +00:00
* 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 $
2010-02-10 18:18:01 +00:00
* $Revision $
* $Date $
* $Author $
2009-11-12 15:01:36 +00:00
*/
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
" ;
2021-03-29 16:19:12 -07:00
$SITEDOWN_TABLE .= '
< html xmlns = " http://www.w3.org/1999/xhtml " '.(defined(' TEXTDIRECTION ') ? ' dir = " '.TEXTDIRECTION.' " ' : ' ').(defined(' CORE_LC ') ? ' xml : lang = \ '' . CORE_LC . '\'' : '' ) . ' >
2006-12-02 04:36:16 +00:00
< head >
2021-03-29 16:19:12 -07:00
< meta http - equiv = " content-type " content = " text/html; charset=utf-8 " />
< meta http - equiv = " content-style-type " content = " text/css " />
< link rel = " icon " href = " { SITEDOWN_FAVICON} " type = " image/x-icon " />
< link rel = " shortcut icon " href = " { SITEDOWN_FAVICON} " type = " image/xicon " />
< link rel = " stylesheet " media = " all " property = " stylesheet " type = " text/css " href = " https://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css " />
< link rel = " stylesheet " media = " all " property = " stylesheet " type = " text/css " href = " https://netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css " />
< link rel = " stylesheet " href = " { SITEDOWN_SOCIAL_CSS} " type = " text/css " media = " all " />
< link rel = " stylesheet " href = " { SITEDOWN_E107_CSS} " type = " text/css " media = " all " />
< link rel = " stylesheet " href = " { SITEDOWN_THEME_CSS} " type = " text/css " media = " all " />
2006-12-02 04:36:16 +00:00
< title > { SITEDOWN_TABLE_PAGENAME } </ title >
2022-03-31 08:24:34 -07:00
< style >
2016-03-11 17:30:17 -08:00
. img - responsive { display : inline }
</ style >
2006-12-02 04:36:16 +00:00
</ head >
2021-03-29 16:19:12 -07:00
< body class = " sitedown " >
< div class = " container " >
< div style = " text-align:center " >
< div style = " text-align:center " > { LOGO : h = 300 } </ div >
2016-03-11 17:30:17 -08:00
< hr />
< br />
{ SITEDOWN_TABLE_MAINTAINANCETEXT }
</ div >
2021-03-29 16:19:12 -07:00
< div style = " margin-top:100px; text-align:center " >
{ XURL_ICONS : type = facebook , twitter , instagram , youtube , flickr , vimeo , github , linkedin & size = 3 x & tip - pos = bottom }
2016-03-11 17:30:17 -08:00
</ div >
2016-03-11 17:03:11 -08:00
</ div >
2006-12-02 04:36:16 +00:00
</ body >
2021-03-29 16:19:12 -07:00
</ html > ' ;
2006-12-02 04:36:16 +00:00
}
// ##### ------------------------------------------------------------------------------------------