-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
70 lines (67 loc) · 2.15 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
<!DOCTYPE html>
<html>
<?php require 'head.php'; ?>
<body>
<?php require 'nav.php'; ?>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="/images/Jurassic-World-The-Game.jpg">
<div class="carousel-caption">
Jurassic World
</div>
</div>
<div class="item">
<img src="/images/Mad-Max-Fury-Road-lovely-day.png">
<div class="carousel-caption">
Mad Max Fury Road
</div>
</div>
<div class="item">
<img src="/images/Cinderella-2015.jpg">
<div class="carousel-caption">
Cinderella 2015
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" 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-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="page-header">Top Picks</h1>
</div>
</div>
<div class="row">
<div class="col-sm-3">
Movie 1
</div>
<div class="col-sm-3">
Movie 2
</div>
<div class="col-sm-3">
Movie 3
</div>
<div class="col-sm-3">
Movie 4
</div>
</div>
</div>
<?php require 'footer.php'; ?>
</body>
</html>