-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (57 loc) · 1.56 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home</title>
<!--<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="js/scripts.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h1>Localé</h1>
<p>When your new in town... Ask a local e</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>{{event.title}}</h3>
<p>{{event.description}}</p>
<div class="float-right">
<p>
{{event.price}}
<br>
{{event.start-time}}
</p>
</div>
</div>
<div class="col-sm-4">
<h3>{{event.title}}</h3>
<p>{{event.description}}</p>
<div class="float-right">
<p>
{{event.price}}
<br>
{{event.start-time}}
</p>
</div>
</div>
<div class="col-sm-4">
<h3>{{event.title}}</h3>
<p>{{event.description}}</p>
<div class="float-right">
<p>
{{event.price}}
<br>
{{event.start-time}}
</p>
</div>
</div>
</div>
</div>
</body>
</html>