-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
126 lines (117 loc) · 3.84 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!--A Design by W3layouts
Author: W3layout
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
Front end customize by Pramila khatiwada & Susila Pandey
Back End : Ravi Khadka [email protected]
-->
<?php include "NepdevSetting/Config.php"; session_start(); $_SESSION['user']='true'; ?>
<!DOCTYPE html>
<html>
<head>
<title>Lighting A Ecommerce Category Flat Bootstarp Resposive Website Template | Products :: w3layouts</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<!-- Custom Theme files -->
<!--theme style-->
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<!--//theme style-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="UTF-8">
<meta name="keywords" content="Wedding Store Responsive web template, Bootstrap Web Templates, Flat Web Templates, Andriod Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- start menu -->
<script src="js/simpleCart.min.js"> </script>
<!-- start menu -->
<link href="css/memenu.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="js/memenu.js"></script>
<script>$(document).ready(function(){$(".memenu").memenu();});</script>
<!-- /start menu -->
<link href="css/form.css" rel="stylesheet" type="text/css" media="all" />
<!-- the jScrollPane script -->
<script type="text/javascript" src="js/jquery.jscrollpane.min.js"></script>
<script type="text/javascript" id="sourcecode">
$(function()
{
$('.scroll-pane').jScrollPane();
});
</script>
<!-- //the jScrollPane script -->
<style>
.CatBanner
{
width: 100%;
margin-left: 20px;
background: #FF595E;
font-size: 18px;
text-align: center;
padding: 14px 16px;
color: #fff;
font-weight: bold;
text-transform: capitalize;
box-shadow: 5px 3px 0px #28262C;
}
.viewall a
{
float: right;
border: 1px solid none;
padding: 14px 16px;
background: #0E79B2;
color: #fff;
}
.viewall a:hover
{
color: #043565;
background: #EB4B98;
}
.product-model
{
min-height: 250vh;
}
</style>
</head>
<body>
<!--header-->
<div class="header-top">
<?php include "mymenu.php" ?>
<div class="clearfix"> </div>
</div>
<!--header//-->
<div class="product-model">
<div class="container">
<ol class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li>Products</li>
</ol>
<?php
$NepdevPages = "index1";
if(isset($_GET['Products']))
{
$NepdevPages = $_GET['Products'];
}
include $NepdevPages.".php";
?>
</div>
<div class="copywrite">
<div class="container">
<div class="copy">
<p>© 2015 Lighting. All Rights Reserved | Design by <a href="http://w3layouts.com/" target="_blank">W3layouts</a> </p>
</div>
<div class="social">
<a href="#"><i class="facebook"></i></a>
<a href="#"><i class="twitter"></i></a>
<a href="#"><i class="dribble"></i></a>
<a href="#"><i class="google"></i></a>
<a href="#"><i class="youtube"></i></a>
</div>
<div class="clearfix"></div>
</div>
</div>
<!---->
</body>
</html>