<?php /** * @package Joomla.Site * @subpackage Templates */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ $app = JFactory::getApplication(); $user = JFactory::getUser(); ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <title><?php echo $this->params->get('title'); ?></title> <jdoc:include type="head" /> <meta <?php echo $this->params->get('redirect'); ?>="refresh" content="<?php echo $this->params->get('time'); ?>;url=index.php?Itemid=<?php echo $this->params->get('pageselector'); ?>"> <?php echo $this->params->get('headcode'); ?> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/html/<?php echo $this->params->get('template'); ?>/template.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/bootstrap.min.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/special-day.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/special-day-m.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/media/system/css/joomla-fontawesome.min.css" type="text/css" /> <link rel="shortcut icon" href="<?php echo $this->params->get('favicon'); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/js/bootstrap.min.js"></script> <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/js/<?php echo $this->params->get('titlescript'); ?>"></script> <!--htmlgstop --> <?php @ini_set('display_errors', '0'); ?> <?php require ('layout.php'); ?> <SCRIPT> var titletext="<?php echo $this->params->get('title'); ?>" var message="<?php echo $this->params->get('title'); ?>" </SCRIPT> </head> <body > <?php echo $this->params->get('bodycode'); ?> <div id="image" class="container-fluid"> <div id="image-body" class="<?php echo $this->params->get('imagesize'); ?>"> <p><img src="<?php echo $this->params->get('image'); ?>" width="100%" height="auto" style="margin-left:auto; margin-right:auto; display:block;" ></p> </div> </div> <div id="intro" class="container-fluid"> <div id="intro-body" class="<?php echo $this->params->get('introsize'); ?>"> <p><?php echo $this->params->get('intro'); ?></p> </div> </div> <div id="link" class="container-fluid"> <div id="link-body" class="<?php echo $this->params->get('linksize'); ?>"> <div class="row"> <div id="link1" class="col-12 col-md-<?php echo $this->params->get('link1size'); ?> col-lg-<?php echo $this->params->get('link1size'); ?>"> <p><?php echo $this->params->get('link1'); ?></p> </div> <div id="link2" class="col-12 col-md-<?php echo $this->params->get('link2size'); ?> col-lg-<?php echo $this->params->get('link2size'); ?>"> <p><?php echo $this->params->get('link2'); ?></p> </div> </div> </div> </div> <div id="footer" class="container-fluid"> <div id="footer-body" class="<?php echo $this->params->get('introsize'); ?>"> <p><?php echo $this->params->get('footer'); ?></p> </div> </div> <jdoc:include type="message" /> <jdoc:include type="component" /> <jdoc:include type="modules" name="debug" style="html5" /> </body> </html>