OwlCyberSecurity - MANAGER
Edit File: index.php
<?php /** * @copyright Copyright (C) 2013 JoomlaTemplates.me - All Rights Reserved. **/ defined( '_JEXEC' ) or die( 'Restricted access' ); $scrolltop = $this->params->get('scrolltop'); $logo = $this->params->get('logo'); $logotype = $this->params->get('logotype'); $sitetitle = $this->params->get('sitetitle'); $sitedesc = $this->params->get('sitedesc'); $menuid = $this->params->get('menuid'); $animation = $this->params->get('animation'); $app = JFactory::getApplication(); $doc = JFactory::getDocument(); $templateparams = $app->getTemplate(true)->params; $menu = $app->getMenu(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> <?php if ( version_compare( JVERSION, '3.0.0', '<' ) == 1) { ?> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <?php } else { JHtml::_('bootstrap.framework');JHtml::_('bootstrap.loadCss', false, $this->direction);}?> <?php include "functions.php"; ?> <meta name="viewport" content="width=device-width" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/styles.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="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/font-awesome.min.css" type="text/css" /> <!-- Custom CSS For IE --> <!--[if IE 7]><link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/font-awesome-ie7.min.css" type="text/css" /><![endif]--> <!--[if lt IE 9]><script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script><script src="https://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script><![endif]--> <!-- Custom CSS --> <link href='https://fonts.googleapis.com/css?family=Lato:200,300,400,700' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Sintony' rel='stylesheet' type='text/css'> <?php if ($scrolltop == 'yes' ) : ?> <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/scroll.js"></script> <?php endif; ?> </head> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-64738311-1', 'auto'); ga('send', 'pageview'); </script> <body class="background"> <div id="wrapper"> <div id="header-wrap" class="clr"> <div id="header" class="container row clr"> <div id="logo" class="col span_4"> <?php if ($logotype == 'image' ) : ?> <?php if ($logo != null ) : ?> <a href="<?php echo $this->baseurl ?>"><img src="<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" /></a> <?php else : ?> <a href="<?php echo $this->baseurl ?>/"><img src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/images/logo.png" border="0"></a> <?php endif; ?><?php endif; ?> <?php if ($logotype == 'text' ) : ?> <a href="<?php echo $this->baseurl ?>"><?php echo htmlspecialchars($sitetitle);?></a> <?php endif; ?> <?php if ($sitedesc !== '' ) : ?> <div id="site-description"><?php echo htmlspecialchars($sitedesc);?></div> <?php endif; ?> </div><!-- /logo --> <?php if ($this->countModules('top')) : ?> <div id="top" class="col span_8"> <jdoc:include type="modules" name="top" style="none" /> </div> <?php endif; ?> <?php include "social.php"; ?> </div> </div> <?php if ($this->countModules('menu')) : ?> <div id="navbar-wrap"> <nav id="navbar" class="container row clr"> <div id="navigation" class="span_12 col clr"> <jdoc:include type="modules" name="menu" style="menu" /> </div> </nav> </div> <div class="clr"></div> <?php endif; ?> <?php if (is_array($menuid) && !is_null($menu->getActive()) && in_array($menu->getActive()->id, $menuid, false)) { ?> <div id="slide-wrap" class="container row clr"> <?php include "slideshow.php"; ?> </div> <?php } ?> <div id="box-wrap" class="container row clr"> <jdoc:include type="modules" name="breadcrumbs" style="none"/> <div id="main-content" class="row span_12"> <?php if ($this->countModules('left')) : ?> <div id="leftbar-w" class="col span_3 clr"> <div id="sidebar"> <jdoc:include type="modules" name="left" style="grid" /> </div> </div> <?php endif; ?> <div id="post" class="col span_<?php echo $compwidth ?> clr"> <div id="comp-wrap"> <jdoc:include type="message" /> <jdoc:include type="component" /> </div> </div> <?php if ($this->countModules('right')) : ?> <div id="rightbar-w" class="col span_3 clr"> <div id="sidebar"> <jdoc:include type="modules" name="right" style="grid" /> </div> </div> <?php endif; ?> </div> </div> <?php if ($this->countModules('user2')) : ?> <div id="user2-wrap"><div id="user2" class="container row clr"> <jdoc:include type="modules" name="user2" style="usergrid" grid="<?php echo $user2_width; ?>" /> </div></div> <?php endif; ?> <div id="footer-wrap" class="container clr" > <?php if ($this->countModules('copyright')) : ?> <div class="copyright"> <jdoc:include type="modules" name="copyright"/> </div> <?php endif; ?> <?php if ($this->countModules('footer-menu')) : ?> <div id="footer-nav"> <jdoc:include type="modules" name="footer-menu" style="none" /> </div> <?php endif; ?> </div> </div> </body> </html>