-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.php
executable file
·62 lines (62 loc) · 2.74 KB
/
landing.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
require_once 'common/config/config.inc.php';
require_once CONTROLLERS_PATH . FILENAME_COMMON_CTRL;
$objComman = new ClassCommon();
require_once CONTROLLERS_PATH . FILENAME_LANDING_CTRL;
require_once CLASSES_PATH . 'class_home_bll.php';
$arrSpecialProductPrice = $objPage->arrData['arrSpecialProductPrice'];
//echo $objPage->varBreadcrumbs;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo CATEGORY_LANDING_TITLE; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<?php include_once INC_PATH . 'comman_css_js.inc.php'; ?>
<script type="text/javascript">var pageLimit = <?php echo $objPage->pageLimit; ?>;</script>
<style>
/* .owl-carousel .owl-wrapper-outer{margin-left:-1px!important}.view img{margin:0 auto;text-align:center}.customNavigation{width:78px;float:right;margin-top:0}.prev8{width:39px;float:left}.next8{width:39px;float:left}.prev7{width:39px;float:left}.next7{width:39px;float:left}.owl-carousel{width:104%}*/
.scroll-pane{height:233px !important;}
</style>
<script>
$(function(){
$('.scroll-pane').jScrollPane();
});
</script>
</head>
<body>
<div id="navBar">
<?php include_once INC_PATH . 'top-header.inc.php'; ?>
</div>
<div class="header"> <div class="layout"> </div></div>
<?php include_once INC_PATH . 'header.inc.php'; ?>
<div id="ouderContainer" class="bg">
<div class="layout">
<div class="successMessage">
<div class="addToCartMess" style="display:none;"></div>
</div>
<?php
if ($objCore->displaySessMsg())
{
?>
<div class="successMessage">
<?php
echo $objCore->displaySessMsg();
$objCore->setSuccessMsg('');
$objCore->setErrorMsg('');
?>
</div>
<?php }
?>
<div class="addToCart">
<div class="addToCartClose" onclick="addToCartClose();"> </div>
<div class="addToCartMsg"></div>
</div>
</div>
</div>
<div class="layout">
<?php include_once INC_PATH . 'landing_middle_part.php'; ?>
</div><?php include_once INC_PATH . 'footer.inc.php'; ?>
</body>
</html>