0byt3m1n1
Path:
/
data
/
49
/
4
/
11
/
84
/
4826899
/
user
/
5715128
/
htdocs
/
soulsymbols
/
templates
/
soulsymbols
/
[
Home
]
File: offline.php
<?php /** * @version $Id: offline.php 22183 2011-09-30 09:04:32Z infograf768 $ * @package Joomla.Site * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $app = JFactory::getApplication(); //$templateDir = JURI::base(true) . '/templates/' . $app->getTemplate() . "/"; $templateDir = 'templates/' . $app->getTemplate() . "/"; ?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <base href="<?php echo JURI::base(); ?>" /> <title><?php echo $app->getCfg('sitename'); ?></title> <link href="<?php echo $templateDir; ?>favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> <link rel="stylesheet" href="<?php echo $templateDir; ?>css/offline.css" type="text/css" /> </head> <body id="offline" style="background:#e5f0f4 url('<?php echo $templateDir; ?>images/body-bkgnd.png') repeat-x;"> <jdoc:include type="message" /> <div id="main"> <?php $filename = $templateDir.'images/header.jpg'; if(is_file($filename)): ?> <img src="<?php echo $templateDir; ?>images/header.jpg" alt="" /> <?php else : ?> <h1><?php echo $app->getCfg('sitename'); echo $_SERVER['DOCUMENT_ROOT'].$templateDir.'images/header.jpg' ?></h1> <?php endif; ?> <div style="height:10px;"></div> <?php if ($app->getCfg('display_offline_message', 1) == 1 && str_replace(' ', '', $app->getCfg('offline_message')) != ''): ?> <?php echo $app->getCfg('offline_message'); ?> <?php elseif ($app->getCfg('display_offline_message', 1) == 2 && str_replace(' ', '', JText::_('JOFFLINE_MESSAGE')) != ''): ?> <?php echo JText::_('JOFFLINE_MESSAGE'); ?> <?php endif; ?> </div> </body> </html>