forked from Fujikomalan/aws-elb-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.php
321 lines (291 loc) · 11.1 KB
/
products.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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700" rel="stylesheet">
<title>Pixie - Products</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Additional CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="assets/css/tooplate-main.css">
<link rel="stylesheet" href="assets/css/owl.css">
<!--
Tooplate 2114 Pixie
https://www.tooplate.com/view/2114-pixie
-->
</head>
<body>
<!-- Pre Header -->
<div id="pre-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<span>
<?php
$output = shell_exec('echo $HOSTNAME');
echo "<h1><center><pre>$output</pre></center></h1>";
echo "<h1><center>Version1</center></h1>"
?>
</span>
</div>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark static-top">
<div class="container">
<a class="navbar-brand" href="#"><img src="assets/images/header-logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="products.php">Products
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.php">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.php">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<!-- Items Starts Here -->
<div class="featured-page">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="section-heading">
<div class="line-dec"></div>
<h1>Featured Items</h1>
</div>
</div>
<div class="col-md-8 col-sm-12">
<div id="filters" class="button-group">
<button class="btn btn-primary" data-filter="*">All Products</button>
<button class="btn btn-primary" data-filter=".new">Newest</button>
<button class="btn btn-primary" data-filter=".low">Low Price</button>
<button class="btn btn-primary" data-filter=".high">Hight Price</button>
</div>
</div>
</div>
</div>
</div>
<div class="featured container no-gutter">
<div class="row posts">
<div id="1" class="item new col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-01.jpg" alt="">
<h4>Proin vel ligula</h4>
<h6>$15.00</h6>
</div>
</a>
</div>
<div id="2" class="item high col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-02.jpg" alt="">
<h4>Erat odio rhoncus</h4>
<h6>$25.00</h6>
</div>
</a>
</div>
<div id="3" class="item low col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-03.jpg" alt="">
<h4>Integer vel turpis</h4>
<h6>$35.00</h6>
</div>
</a>
</div>
<div id="4" class="item low col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-04.jpg" alt="">
<h4>Sed purus quam</h4>
<h6>$45.00</h6>
</div>
</a>
</div>
<div id="5" class="item new high col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-05.jpg" alt="">
<h4>Morbi aliquet</h4>
<h6>$55.00</h6>
</div>
</a>
</div>
<div id="6" class="item new col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-06.jpg" alt="">
<h4>Urna ac diam</h4>
<h6>$65.00</h6>
</div>
</a>
</div>
<div id="7" class="item new high col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-03.jpg" alt="">
<h4>Proin eget imperdiet</h4>
<h6>$75.00</h6>
</div>
</a>
</div>
<div id="8" class="item low new col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-02.jpg" alt="">
<h4>Nullam risus nisl</h4>
<h6>$85.00</h6>
</div>
</a>
</div>
<div id="9" class="item new col-md-4">
<a href="single-product.php">
<div class="featured-item">
<img src="assets/images/product-01.jpg" alt="">
<h4>Cras tempus</h4>
<h6>$95.00</h6>
</div>
</a>
</div>
</div>
</div>
<div class="page-navigation">
<div class="container">
<div class="row">
<div class="col-md-12">
<ul>
<li class="current-page"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Featred Page Ends Here -->
<!-- Subscribe Form Starts Here -->
<div class="subscribe-form">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-heading">
<div class="line-dec"></div>
<h1>Subscribe on PIXIE now!</h1>
</div>
</div>
<div class="col-md-8 offset-md-2">
<div class="main-content">
<p>Godard four dollar toast prism, authentic heirloom raw denim messenger bag gochujang put a bird on it celiac readymade vice.</p>
<div class="container">
<form id="subscribe" action="" method="get">
<div class="row">
<div class="col-md-7">
<fieldset>
<input name="email" type="text" class="form-control" id="email"
onfocus="if(this.value == 'Your Email...') { this.value = ''; }"
onBlur="if(this.value == '') { this.value = 'Your Email...';}"
value="Your Email..." required="">
</fieldset>
</div>
<div class="col-md-5">
<fieldset>
<button type="submit" id="form-submit" class="button">Subscribe Now!</button>
</fieldset>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Subscribe Form Ends Here -->
<!-- Footer Starts Here -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="logo">
<img src="assets/images/header-logo.png" alt="">
</div>
</div>
<div class="col-md-12">
<div class="footer-menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">How It Works ?</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-md-12">
<div class="social-icons">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-rss"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Footer Ends Here -->
<!-- Sub Footer Starts Here -->
<div class="sub-footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copyright-text">
<p>Copyright © 2019 Company Name
- Design: <a rel="nofollow" href="https://www.facebook.com/tooplate">Tooplate</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- Sub Footer Ends Here -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Additional Scripts -->
<script src="assets/js/custom.js"></script>
<script src="assets/js/owl.js"></script>
<script src="assets/js/isotope.js"></script>
<script language = "text/Javascript">
cleared[0] = cleared[1] = cleared[2] = 0; //set a cleared flag for each field
function clearField(t){ //declaring the array outside of the
if(! cleared[t.id]){ // function makes it static and global
cleared[t.id] = 1; // you could use true and false, but that's more typing
t.value=''; // with more chance of typos
t.style.color='#fff';
}
}
</script>
</body>
</html>