-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainLayout.master
166 lines (147 loc) · 6.92 KB
/
MainLayout.master
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<%@ Master Language="VB" CodeFile="MainLayout.master.vb" Inherits="MainLayout" %>
<!DOCTYPE html>
<html dir="ltr" lang="en" class="no-js">
<head>
<asp:ContentPlaceHolder ID="head" runat="server"></asp:ContentPlaceHolder>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="La Boutique HTML v10.0" />
<title>Home</title>
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/font-awesome.min.css" />
<link rel="stylesheet" href="./css/flexslider.css" />
<link rel="stylesheet" href="./js/tfingi-megamenu/tfingi-megamenu-frontend.css" />
<link rel="stylesheet" href="./css/color-schemes/pomegranate.css" id="color_scheme" />
<!-- his CSS -->
<link href="css/main.css" rel="stylesheet">
<!-- <meta http-equiv="X-UA-Compatible" content="IE=7; IE=8" />-->
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link href="http://fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic|Shadows+Into+Light" rel="stylesheet">
</head>
<body>
<form id="form1" runat="server">
<div class="wrapper container">
<!-- Search bar and Cart Button (Row) -->
<div class="header row">
<!-- Pocket Store div -->
<div class =" col-sm-3 ara1 "><h1>Pocket Store</h1></div>
<!-- Search div -->
<div class="col-sm-offset-1 search col-sm-3">
<div class="qs_s">
<form method="post" action="search.html"><input type="text" name="query" id="query" placeholder="Search…" autocomplete="off" value=""></form>
</div>
</div>
<!-- Cart div -->
<div class="mini-cart col-sm-offset-4 col-sm-1 ">
<a href="ViewCart.aspx" title="Go to cart →">
<span>3</span>
</a>
</div>
</div>
<!-- Navigation -->
<nav class="navigation">
<div class="row">
<div class="col-xs-12">
<!-- button that only shows up in mobile view -->
<a href="#" class="main-menu-button">Navigation</a>
<!-- Menu Bar -->
<div class="megamenu_container menu-main-navigation-container">
<ul id="menu-main-navigation" class="main-menu">
<!-- I. Home-->
<li class="menu-item-home menu-item-has-children megamenu-parent " data-width=""><a href="Default.aspx">Home</a></li>
<!-- II. Shop-->
<li class="menu-item-has-children">
<a href="category.html">Shop</a>
<ul role="menu" class="sub-menu">
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:PocketStoreConnectionString %>" SelectCommand="SELECT * FROM [Category] WHERE Parent=0"></asp:SqlDataSource>
<asp:DataList ID="DataList2" runat="server" DataSourceID="DSCategory"
RepeatDirection="Vertical">
<ItemTemplate>
<li><a href="SubCategory.aspx?MainCatId=<%# Eval("CategoryID")%>&MainCatName=<%# Eval("CategoryName")%>"><%# Trim(Eval("CategoryName"))%></a></li>
</ItemTemplate>
</asp:DataList>
</ul>
</li>
<!-- III. Cart-->
<li ><a href="cart.html">Cart</a></li>
<!-- IV. Contact Us-->
<li class="menu-item-has-children megamenu-parent" data-width="400">
<a href="contact-us.html">Contact Us</a>
<ul class="sub-menu">
<li class="megamenu-column"><a href="#MegaMenuColumn">Mega Menu Column</a></li>
<li class="megamenu-heading"><a href="#MegaMenuHeading">Contact Us</a></li>
<li class="megamenu-content">
<div class="wpcf7">
<form action="" method="post" class="wpcf7-form" novalidate="novalidate">
<label>Your Name (required)</label>
<input type="text" name="your-name" value="" size="40" aria-required="true" />
<label>Your Email (required)</label>
<input type="email" name="your-email" value="" size="40"aria-required="true" />
<label>Subject</label>
<input type="text" name="your-subject" value="" size="40" />
<label>Your Message</label>
<textarea name="your-message" cols="40" rows="10" ></textarea>
<input type="submit" value="Send" class="btn btn-primary" />
</form>
</div>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</nav>
<!-- ASP ContentPlaceHolder1 -->
<div class="row">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder>
</div>
<!-- Footer -->
<div class ="footer row" >
<!-- I. Account -->
<div class="col-sm-6 account">
<h6>My account</h6>
<ul class="links">
<li>
<a href="login-register.html" title="Login / Register">Login / Register</a>
</li>
</ul>
</div>
<!-- II. Categories -->
<div class="col-sm-6 categories">
<h6>Shop</h6>
<ul role="menu" >
<asp:SqlDataSource ID="DSCategory" runat="server" ConnectionString="<%$ ConnectionStrings:PocketStoreConnectionString %>" SelectCommand="SELECT * FROM [Category] WHERE Parent=0"></asp:SqlDataSource>
<asp:DataList ID="dlMainCategory" runat="server" DataSourceID="DSCategory"
RepeatDirection="Vertical">
<ItemTemplate>
<li><a href="SubCategory.aspx?MainCatId=<%# Eval("CategoryID")%>"><%# Trim(Eval("CategoryName"))%></a></li>
</ItemTemplate>
</asp:DataList>
</ul>
</div>
</div>
</div>
<!-- JAVASCRIPT -->
<script src="./js/jquery-1.11.3.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<script src="./js/jquery-migrate-1.2.1.min.js"></script>
<script src="./js/isotope.pkgd.min.js"></script>
<script src="./js/imagesloaded.pkgd.min.js"></script>
<script src="./js/jquery.flexslider.js"></script>
<script src="./js/jquery-ui-1.10.2.custom.js"></script>
<script src="./js/jquery.easing.min.js"></script>
<script src="./js/jquery.elevatezoom.js"></script>
<script src="./js/jquery.sharrre-1.3.5.js"></script>
<script src="./js/jquery.cookie.js"></script>
<script src="./js/la_boutique.js"></script>
<script src="./js/tfingi-megamenu/tfingi-megamenu-frontend.js"></script>
<!-- END JAVASCRIPTZ -->
</form>
</body>
</html>