-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
116 lines (102 loc) · 3.08 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
<?php include('config.php'); ?>
<!DOCTYPE html>
<html>
<!-- Header -->
<head><?php include('header.php'); ?>
</head>
<!-- Header Close -->
<body class="text-center gradbackground text-white">
<?php include('navbar.php'); ?>
<div class="container-fluid" >
<div class="row">
<div id="carousel" class="carousel slide" data-ride="carousel" style="height: 100%;">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active ">
<img class="center-block" src="img/mike-erskine-144525.jpg" alt="camping 1">
<div class="carousel-caption">
<h5>Camp out with friends</h5>
</div>
</div>
<div class="item">
<img class="center-block" src="img/anthony-mapp-235816.jpg" alt="bmx">
<div class="text-black carousel-caption">
<h5>BMX</h5>
</div>
</div>
<div class="item">
<img class="center-block" src="img/david-200073.jpg" alt="cycle">
<div class="text-black carousel-caption">
<h5>Cycling</h5>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<br />
<div class="container">
<div class="row">
<a href="item.php?id=20">
<div class="col-md-2 col-sm-2">
<img class="img img-responsive img-thumbnail" src="img/cycling.jpg" />
<h5 class="white-text">Cycling</h5>
</div>
</a>
<a href="item.php?id=6">
<div class="col-md-2 col-sm-2">
<img class="img img-responsive img-thumbnail" src="img/hans-eiskonen-25804.jpg" />
<h5 class="white-text">Skateboarding</h5>
</div>
</a>
<a href="item.php?id=3">
<div class="col-md-2 col-sm-2">
<img class="img img-responsive img-thumbnail" src="img/parkour.jpg" />
<h5 class="white-text">Parkour</h5>
</div>
</a>
<a href="item.php?id=4">
<div class="col-md-2 col-sm-2">
<img class="img img-responsive img-thumbnail" src="img/liz99-254943.jpg" />
<h5 class="white-text">Scootering</h5>
</div>
</a>
<a href="item.php?id=11">
<div class="col-md-2 col-sm-2">
<img class="img img-responsive img-thumbnail" src="img/rafting_5134.jpg" />
<h5 class="white-text">Rafting</h5>
</div>
</a>
<a href="item.php?id=12">
<div class="col-md-2 col-sm-2">
<img class="img img-responsive img-thumbnail" src="img/camp.jpg" />
<h5 class="white-text">Camping</h5>
</div>
</a>
<br />
</div>
<div class="row">
<a href="category.php" class="btn btn-lg white black-text btn-default">All Games</a>
</div>
</div>
<!-- Footer -->
<?php include('footer.php'); ?>
<br />
<!-- Footer Close -->
</body>
</html>