One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
xampp7
/
htdocs
/
edgpens
/
inc
/
View File Name :
page_head.php
<?php /** * page_head.php * * Author: pixelcave * * The head of each page * */ ?> <!-- Page Wrapper --> <!-- In the PHP version you can set the following options from inc/config file --> <!-- Available classes: 'page-loading' enables page preloader --> <div id="page-wrapper"<?php if ($template['page_preloader']) { echo ' class="page-loading"'; } ?>> <!-- Preloader --> <!-- Preloader functionality (initialized in js/app.js) - pageLoading() --> <!-- Used only if page preloader enabled from inc/config (PHP version) or the class 'page-loading' is added in #page-wrapper element (HTML version) --> <div class="preloader"> <div class="inner"> <!-- Animation spinner for all modern browsers --> <div class="preloader-spinner themed-background hidden-lt-ie10"></div> <!-- Text for IE9 --> <h3 class="text-primary visible-lt-ie10"><strong>Loading..</strong></h3> </div> </div> <!-- END Preloader --> <!-- Page Container --> <!-- In the PHP version you can set the following options from inc/config file --> <!-- Available #page-container classes: 'sidebar-light' for a light main sidebar (You can add it along with any other class) 'sidebar-visible-lg-mini' main sidebar condensed - Mini Navigation (> 991px) 'sidebar-visible-lg-full' main sidebar full - Full Navigation (> 991px) 'sidebar-alt-visible-lg' alternative sidebar visible by default (> 991px) (You can add it along with any other class) 'header-fixed-top' has to be added only if the class 'navbar-fixed-top' was added on header.navbar 'header-fixed-bottom' has to be added only if the class 'navbar-fixed-bottom' was added on header.navbar 'fixed-width' for a fixed width layout (can only be used with a static header/main sidebar layout) 'enable-cookies' enables cookies for remembering active color theme when changed from the sidebar links (You can add it along with any other class) --> <?php $page_classes = ''; if ($template['header'] == 'navbar-fixed-top') { $page_classes = 'header-fixed-top'; } else if ($template['header'] == 'navbar-fixed-bottom') { $page_classes = 'header-fixed-bottom'; } if ($template['sidebar']) { $page_classes .= (($page_classes == '') ? '' : ' ') . $template['sidebar']; } if ($template['layout'] == 'fixed-width' && $template['header'] == '') { $page_classes .= (($page_classes == '') ? '' : ' ') . $template['layout']; } if ($template['cookies'] === 'enable-cookies') { $page_classes .= (($page_classes == '') ? '' : ' ') . $template['cookies']; } ?> <div id="page-container"<?php if ($page_classes) { echo ' class="' . $page_classes . '"'; } ?>> <?php if ($template['inc_sidebar_alt']) { include 'inc/' . $template['inc_sidebar_alt'] . '.php'; } ?> <?php if ($template['inc_sidebar']) { include 'inc/' . $template['inc_sidebar'] . '.php'; } ?> <!-- Main Container --> <div id="main-container"> <?php if ($template['inc_header']) { include 'inc/' . $template['inc_header'] . '.php'; } ?>