-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevent.html
More file actions
59 lines (48 loc) · 1.72 KB
/
event.html
File metadata and controls
59 lines (48 loc) · 1.72 KB
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
<!DOCTYPE html>
<html>
<head>
<head>
<meta charset="UTF-8">
<title>Keep Moving</title>
<!-- Styling -->
<link rel="stylesheet" type="text/css" href="assets/stylesheets/event.css">
<link rel="stylesheet" href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="//code.cdn.mozilla.net/fonts/fira.css">
<!-- JavaScript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="assets/javascript/vendor/jquery.textfill.min.js"></script>
<script type="text/javascript" src="assets/javascript/display-utilities.js"></script>
<script type="text/javascript" src="assets/javascript/display-event.js"></script>
<script src="//apis.google.com/js/client.js?onload=checkAuth"></script>
</head>
<body>
<div class="sidebar">
<div class="upcoming"><div class="text-wrapper"></div></div>
<div class="upcoming"><div class="text-wrapper"></div></div>
<div class="upcoming"><div class="text-wrapper"></div></div>
<div class="upcoming"><div class="text-wrapper"></div></div>
</div>
<div class="event">
<a href="index.html" class="button"><i class="ion-close-round"></i></a>
<i class="ion-edit button"></i>
<h1 id="title"></h1>
<div id="time-from" class="time-container">
<p class="time">10:30</p>
<div>
<p>A<br>M</p>
</div>
</div>
<p class="separator">TO</p>
<div id="time-to" class="time-container">
<p class="time">10:30</p>
<div>
<p>A<br>M</p>
</div>
</div>
<h4>Description</h4>
<div id="description"></div>
<div id="map"></div>
<div id="color"></div>
</div>
</body>
</html>