-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasterPage.master
239 lines (200 loc) · 11.6 KB
/
MasterPage.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<%@ Master Language="c#" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!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 id="Head1" runat="server">
<meta charset="utf-8"/>
<title>Bootshop online Shopping cart</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content=""/>
<meta name="author" content=""/>
<!--Less styles -->
<!-- Other Less css file //different less files has different color scheam
<link rel="stylesheet/less" type="text/css" href="themes/less/simplex.less">
<link rel="stylesheet/less" type="text/css" href="themes/less/classified.less">
<link rel="stylesheet/less" type="text/css" href="themes/less/amelia.less"> MOVE DOWN TO activate
-->
<!--<link rel="stylesheet/less" type="text/css" href="themes/less/bootshop.less">
<script src="themes/js/less.js" type="text/javascript"></script> -->
<!-- Bootstrap style -->
<link id="callCss" rel="stylesheet" href="themes/bootshop/bootstrap.min.css" media="screen"/>
<link href="themes/css/base.css" rel="stylesheet" media="screen"/>
<!-- Bootstrap style responsive -->
<link href="themes/css/bootstrap-responsive.min.css" rel="stylesheet"/>
<link href="themes/css/font-awesome.css" rel="stylesheet" type="text/css">
<!-- Google-code-prettify -->
<link href="themes/js/google-code-prettify/prettify.css" rel="stylesheet"/>
<!-- fav and touch icons -->
<link rel="shortcut icon" href="themes/images/ico/favicon.ico"/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="themes/images/ico/apple-touch-icon-144-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="themes/images/ico/apple-touch-icon-114-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="themes/images/ico/apple-touch-icon-72-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" href="themes/images/ico/apple-touch-icon-57-precomposed.png"/>
<style type="text/css" id="enject"></style>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<div id="header">
<div class="container">
<br/><br/>
<!-- Navbar ================================================== -->
<div id="logoArea" class="navbar">
<a id="smallScreen" data-target="#topMenu" data-toggle="collapse" class="btn btn-navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="navbar-inner">
<a class="brand" href="index.aspx"><img src="themes/images/logo.png" alt="Bootsshop"/></a>
<ul id="topMenu" class="nav pull-right">
<li class=""><a href="normal.aspx">Delivery</a></li>
<li class=""><a href="contact.aspx">Contact</a></li>
<li class="">
<%
if (Session["uname"] != null)
{
%>
<a href="Logout.aspx" style="padding-right:0">
<span class="btn btn-large btn-success">Logout</span>
</a>
<%
}
else
{
%>
<a href="register.aspx" style="padding-right:0">
<span class="btn btn-large btn-success">Login</span>
</a><% } %>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Header End====================================================================== -->
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
<div id="mainBody">
<div class="container">
<div class="row">
<!-- Sidebar ================================================== -->
<div id="sidebar" class="span3">
<!--
<ul id="sideManu" class="nav nav-tabs nav-stacked">
<li class="subMenu open"><a href="products.aspx"> SAMSUNG</a>
</li>
<li class="subMenu"><a href="products.aspx"> HTC </a>
</li>
<li class="subMenu"><a href="products.aspx">GIONEE</a>
</li>
</ul>-->
<br/>
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<div class="thumbnail">
<img src="<%# Eval("image") %>" alt="Bootshop panasonoc New camera"/>
<div class="caption">
<h5><%# Eval("pname") %></h5>
<h4 style="text-align:center"><a class="btn" href="product_details.aspx?pid=<%# Eval("pid") %>"> <i class="icon-zoom-in"></i></a> <a class="btn" href="product_details.aspx?pid=<%# Eval("pid") %>">Buy Now <i class="icon-shopping-cart"></i></a> <a class="btn btn-primary" href="#"><%# Eval("ofp") %></a></h4>
</div>
</div><br/>
</ItemTemplate>
</asp:Repeater>
</div>
<!-- Sidebar end=============================================== -->
<asp:ContentPlaceHolder id="ContentPlaceHolder2" runat="server">
</asp:ContentPlaceHolder>
</body>
<!-- Footer ================================================================== -->
<div id="footerSection">
<div class="container">
<div class="row">
<div class="span3">
<h5>ACCOUNT</h5>
<a href="login.aspx">YOUR ACCOUNT</a>
<a href="login.aspx">PERSONAL INFORMATION</a>
<a href="login.aspx">ADDRESSES</a>
<a href="login.aspx">DISCOUNT</a>
<a href="login.aspx">ORDER HISTORY</a>
</div>
<div class="span3">
<h5>INFORMATION</h5>
<a href="contact.aspx">CONTACT</a>
<a href="register.aspx">REGISTRATION</a>
<a href="legal_notice.aspx">LEGAL NOTICE</a>
</div>
<div class="span3">
<h5>OUR OFFERS</h5>
<a href="special_offer.aspx">SPECIAL OFFERS</a>
</div>
<div id="socialMedia" class="span3 pull-right">
<h5>SOCIAL MEDIA </h5>
<a href="#"><img width="60" height="60" src="themes/images/facebook.png" title="facebook" alt="facebook"/></a>
<a href="#"><img width="60" height="60" src="themes/images/twitter.png" title="twitter" alt="twitter"/></a>
<a href="#"><img width="60" height="60" src="themes/images/youtube.png" title="youtube" alt="youtube"/></a>
</div>
</div>
<p class="pull-right">© Bootshop</p>
</div><!-- Container End -->
</div>
<!-- Placed at the end of the document so the pages load faster ============================================= -->
<script src="themes/js/jquery.js" type="text/javascript"></script>
<script src="themes/js/bootstrap.min.js" type="text/javascript"></script>
<script src="themes/js/google-code-prettify/prettify.js"></script>
<script src="themes/js/bootshop.js"></script>
<script src="themes/js/jquery.lightbox-0.5.js"></script>
<!-- Themes switcher section ============================================================================================= -->
<div id="secectionBox">
<link rel="stylesheet" href="themes/switch/themeswitch.css" type="text/css" media="screen" />
<script src="themes/switch/theamswitcher.js" type="text/javascript" charset="utf-8"></script>
<div id="themeContainer">
<div id="hideme" class="themeTitle">Style Selector</div>
<div class="themeName">Oregional Skin</div>
<div class="images style">
<a href="themes/css/#" name="bootshop"><img src="themes/switch/images/clr/bootshop.png" alt="bootstrap business templates" class="active"></a>
<a href="themes/css/#" name="businessltd"><img src="themes/switch/images/clr/businessltd.png" alt="bootstrap business templates" class="active"></a>
</div>
<div class="themeName">Bootswatch Skins (11)</div>
<div class="images style">
<a href="themes/css/#" name="amelia" title="Amelia"><img src="themes/switch/images/clr/amelia.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="spruce" title="Spruce"><img src="themes/switch/images/clr/spruce.png" alt="bootstrap business templates" ></a>
<a href="themes/css/#" name="superhero" title="Superhero"><img src="themes/switch/images/clr/superhero.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="cyborg"><img src="themes/switch/images/clr/cyborg.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="cerulean"><img src="themes/switch/images/clr/cerulean.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="journal"><img src="themes/switch/images/clr/journal.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="readable"><img src="themes/switch/images/clr/readable.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="simplex"><img src="themes/switch/images/clr/simplex.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="slate"><img src="themes/switch/images/clr/slate.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="spacelab"><img src="themes/switch/images/clr/spacelab.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="united"><img src="themes/switch/images/clr/united.png" alt="bootstrap business templates"></a>
<p style="margin:0;line-height:normal;margin-left:-10px;display:none;"><small>These are just examples and you can build your own color scheme in the backend.</small></p>
</div>
<div class="themeName">Background Patterns </div>
<div class="images patterns">
<a href="themes/css/#" name="pattern1"><img src="themes/switch/images/pattern/pattern1.png" alt="bootstrap business templates" class="active"></a>
<a href="themes/css/#" name="pattern2"><img src="themes/switch/images/pattern/pattern2.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern3"><img src="themes/switch/images/pattern/pattern3.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern4"><img src="themes/switch/images/pattern/pattern4.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern5"><img src="themes/switch/images/pattern/pattern5.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern6"><img src="themes/switch/images/pattern/pattern6.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern7"><img src="themes/switch/images/pattern/pattern7.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern8"><img src="themes/switch/images/pattern/pattern8.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern9"><img src="themes/switch/images/pattern/pattern9.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern10"><img src="themes/switch/images/pattern/pattern10.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern11"><img src="themes/switch/images/pattern/pattern11.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern12"><img src="themes/switch/images/pattern/pattern12.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern13"><img src="themes/switch/images/pattern/pattern13.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern14"><img src="themes/switch/images/pattern/pattern14.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern15"><img src="themes/switch/images/pattern/pattern15.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern16"><img src="themes/switch/images/pattern/pattern16.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern17"><img src="themes/switch/images/pattern/pattern17.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern18"><img src="themes/switch/images/pattern/pattern18.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern19"><img src="themes/switch/images/pattern/pattern19.png" alt="bootstrap business templates"></a>
<a href="themes/css/#" name="pattern20"><img src="themes/switch/images/pattern/pattern20.png" alt="bootstrap business templates"></a>
</div>
</div>
</div>
<span id="themesBtn"></span>
</form>
</body>
</html>