ACC SHELL
<?php
include_once('administrace/config/config.php');
include_once('administrace/libs/funkcephp.php');
include_once('www/template/bootstrap.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<title><?php echo $title; ?></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="<?php echo $description; ?>" />
<meta name="keywords" content="<?php echo $keywords; ?>" />
<meta name="author" content="PureFiction, info@purefiction.cz" />
<meta name="robots" content="<?php echo ROBOTS; ?>" />
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=latin,latin-ext" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" media="screen" href="/www/css/default.css" />
<script type="text/javascript" src="/www/js/jquery.js"></script>
<script type="text/javascript" src="/www/js/slider.js"></script>
<script type="text/javascript" src="/www/js/bx.js"></script>
<script type="text/javascript" src="/www/js/main.js"></script>
<script type="text/javascript" src="/www/js/fancy/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="/www/js/fancy/jquery.fancybox-1.3.4.css" media="screen" />
</head>
<script type="text/javascript">
$(function() {
$(".modal, a[rel=gal1], a[rel=gal2]").fancybox({});
});
</script>
<?php
// if (!TEST)
// {
//$_SESSION['message_ko'][] = 'Error zpráva';
//$_SESSION['message_ok'][] = 'Success zpráva';
//}
if (isset($_SESSION['message_ko']) || isset($_SESSION['message_ok'])):
?>
<script type="text/javascript">
//alert();
$(document).ready(function() {
$("#hidden_link").fancybox().trigger('click');
});
</script>
<?php
endif;
?>
<?php
if (isset($Sablona->typ) && $Sablona->typ == 7 || $Sablona->typ == 91)
{
$odkaz = 'http://' . SERVER_NAME;
if (isset($Sablona->url))
{
$odkaz .= '/' . $Sablona->url;
}
if (isset($Detail->url))
{
$odkaz .= '/' . KATALOG_ITEM_PREFIX . $Detail->url . '.html';
}
echo '<link rel="canonical" href="' . $odkaz . '"/>';
}
?>
</head>
<body>
<?php include(ROOT . '/www/template/google-analytics.php'); ?>
<div id="wrap">
<div id="header">
<div class="logo">
<a href="http://<?php echo SERVER_NAME; ?>" title=""></a>
</div>
<div class="topPanel"><?php echo $globalText['KontaktniUdaje']; ?></div>
<?php include(ROOT . '/www/template/navigace/navigace_horni.php'); ?>
</div>
<?php if (!INDEX): ?>
<div id="subPanel"></div>
<?php endif; ?>
<?php include(ROOT . '/www/template/messages.php'); ?>
<?php include_once('www/template/content.php'); ?>
<div id="links">
<div class="links_in">
<div class="box box1">
<?php echo $globalText['ZakladniNavigace']; ?>
</div>
<div class="box box2">
<?php echo $globalText['CoNabizime']; ?>
</div>
<div class="box box3">
<?php echo $globalText['RychlyKontakt']; ?>
</div>
<div class="clear"></div>
</div>
</div>
<div id="footer">
<div class="copy"><?php echo $globalText['Zapati']; ?></div>
</div>
</div>
<?php include_once('www/template/modalni_okna.php'); ?>
</body>
</html>
ACC SHELL 2018