-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.html
136 lines (119 loc) · 5.08 KB
/
board.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- refreshes every 6 min -->
<!-- <meta http-equiv="refresh" content="1200" /> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<title>FutureBoard</title>
<!-- load vendor js -->
<script src='/static/vendor/socket.io.js' charset="UTF-8" type="text/javascript"></script>
<script src='/static/vendor/jquery.min.js' charset="UTF-8" type="text/javascript"></script>
<!-- load Materialize CSS -->
<link rel="stylesheet" type="text/css" href="/static/vendor/materialize.min.css">
<!-- load Materialize js -->
<script src='/static/vendor/materialize.min.js' charset="UTF-8" type="text/javascript"></script>
<!-- load Materialize icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/static/css/board.css">
<link rel="stylesheet" type="text/css" href="/static/css/board_mobile.css">
<!-- load board components-->
<script src='/config.js' charset="UTF-8" type="text/javascript"></script>
<script src='/static/js/board_carousel.js' charset="UTF-8" type="text/javascript"></script>
<script src='/static/js/board_events.js' charset="UTF-8" type="text/javascript"></script>
<!-- load board js -->
<script src='/static/js/init_socket.js' charset="UTF-8" type="text/javascript"></script>
</head>
<body>
<div class="row">
<div class="col s12 m8 l8 xl8 left-aside">
<!-- navigation bar -->
<nav class="col s12 wave">
<div class="nav-wrapper">
<a href="/" class="brand-logo"><i class="material-icons hide-on-small-only">fast_forward</i>FutureBoard</a>
<ul id="nav-mobile" class="right">
<li>
<div id="clock" class="hide-on-med-and-down">
<p class="unit" id="hours"></p>
<p class="unit" id="minutes"></p>
<p class="unit" id="seconds"></p>
<p class="unit" id="ampm"></p>
</div>
</li>
<li class="hide-on-med-and-down">
<p class="unit" id="dateToday"></p>
</li>
</ul>
</div>
</nav>
<div class="main-display ">
<!-- main carousel -->
<div id="slideshow" class="carousel carousel-slider moments">
</div>
<!-- vote and flag buttons -->
<div class="slideshow-buttons right-align">
<div class="lables">
<span id="votes" class="new badge" data-badge-caption=""></span>
</div>
<!-- vote button -->
<a class="btn-floating waves-effect waves-light btn-large black hoverable plusOne"><i class="material-icons">plus_one</i></a>
</div>
<div class="flag-buttons left-align">
<!-- flag button -->
<a class="btn-floating waves-effect waves-light btn-large red hoverable flag"><i class="material-icons">flag</i></a>
</div>
</div>
</div>
<div class="col s0 m4 l4 xl4 right-aside hide-on-small-only">
<div class="events today col s12">
<!-- events nav bar -->
<ul class="collection with-header">
<li class="collection-header">
<div class="nav-wrapper">
<a href="#!" class="brand-logo">EVENTS TODAY</a>
</div>
</li>
</ul>
<!-- events today -->
<div class="eventItems autoscrolling">
<ul id="eventsToday" class="collection with-header">
</ul>
</div>
</div>
<div class="events featured col s12">
<!-- events nav bar -->
<ul class="collection with-header">
<li class="collection-header">
<div class="nav-wrapper">
<a href="#!" class="brand-logo">FEATURED EVENTS</a>
</div>
</li>
</ul>
<!-- featured events -->
<div class="eventItems autoscrolling">
<ul id="featuredEvents" class="collection with-header">
</ul>
</div>
</div>
</div>
</div>
<div class="fixed-action-btn horizontal slideshow-button hide-on-small-only">
<a class="btn-floating btn-large blue main-button pulse">
<i class="large material-icons">mode_edit</i>
</a>
<ul>
<li><a target="_blank" href="https://events.olin.build/edit" class="btn-floating black"><i class="material-icons">date_range</i></a></li>
<li><a target="_blank" href="/upload" class="btn-floating black"><i class="material-icons">add_to_queue</i></a></li>
</ul>
</div>
</div>
<!-- load Showdown Markdown Parser -->
<script src="/static/vendor/showdown.min.js" charset="utf-8"></script>
<!-- load jQuery Clock for navbar-->
<script src='/static/vendor/date.js' charset="UTF-8" type="text/javascript"></script>
<script src='/static/vendor/jquery_sort.js' charset="UTF-8" type="text/javascript"></script>
<script src="/static/js/clock.js" charset="utf-8"></script>
</body>
</html>