Файл: severus/application/views/header.php
Строк: 178
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php echo $this->config->item("app_name");?> <?php echo $this->config->item("app_sub");?></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="<?php echo $this->config->item("base_url");?>severus-icon.png">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="<?php echo $this->config->item("base_url");?>css/normalize.css">
<link rel="stylesheet" href="<?php echo $this->config->item("base_url");?>css/fonts.css">
<link href='//fonts.googleapis.com/css?family=Kaushan+Script|Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="<?php echo $this->config->item("base_url");?>css/main.css">
<script src="<?php echo $this->config->item("base_url");?>js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header id="banner" class="fullwidth">
<section id="topbar" class="fullwidth">
<section id="toplinks" class="body">
<a id="logo" href="<?php echo $this->config->item("base_url");?>"><?php echo $this->config->item("app_sub");?> <span>v<?php echo $this->config->item("version");?></span></a>
<div class="themelogo"><?php echo $this->config->item("app_name");?></div>
<section id="topbuttons">
<a class="button greybutton" href="<?php echo $this->config->item("base_url");?>index.php/home/logout/"><i class="icon-file"></i><?php echo trans("button_logout", "Logout");?></a>
</section>
</section>
</section>
<nav id="main-nav" class="body"><ul>
<li class="active"><a href="<?php echo $this->config->item("base_url");?>"><i class="icon-dashboard"></i><p><?php echo trans("nav_dashboard", "Dashboard");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/servers/"><i class="icon-cabinet"></i><p><?php echo trans("nav_servers", "Servers");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/users/"><i class="icon-users"></i><p><?php echo trans("nav_users", "Users");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/settings/"><i class="icon-settings"></i><p><?php echo trans("nav_settings", "Settings");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/services/"><i class="icon-cogs"></i><p><?php echo trans("nav_services", "Services");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/cron/"><i class="icon-calendar"></i><p><?php echo trans("nav_schedule", "Schedule");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/support/"><i class="icon-support"></i><p><?php echo trans("nav_support", "Support");?></p></a></li>
</ul></nav>
<nav id="sticky-main-nav"><ul class="body">
<li class="active"><a href="<?php echo $this->config->item("base_url");?>"><i class="icon-dashboard"></i><p><?php echo trans("nav_dashboard", "Dashboard");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/servers/"><i class="icon-cabinet"></i><p><?php echo trans("nav_servers", "Servers");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/users/"><i class="icon-users"></i><p><?php echo trans("nav_users", "Users");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/settings/"><i class="icon-settings"></i><p><?php echo trans("nav_settings", "Settings");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/services/"><i class="icon-cogs"></i><p><?php echo trans("nav_services", "Services");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/cron/"><i class="icon-calendar"></i><p><?php echo trans("nav_schedule", "Schedule");?></p></a></li>
<li><a href="<?php echo $this->config->item("base_url");?>index.php/support/"><i class="icon-support"></i><p><?php echo trans("nav_support", "Support");?></p></a></li>
</ul></nav>
<div class="hr"></div>
</header>
<?php if(file_exists("install/install.sql")) echo '<p class="error">'.trans('first_install3', 'The install directory still exists, please delete it or you could lose data').'</p>'; ?>
<?php
$flasherror = $this->session->flashdata('flash_errors');
if(isset($flasherror) && !empty($flasherror)) echo $flasherror;
?>