-
Notifications
You must be signed in to change notification settings - Fork 2
/
calendar.html
83 lines (63 loc) · 3.28 KB
/
calendar.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
<!DOCTYPE html>
<html>
<head>
<!--
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>Stream Calendar</title><!-- This is just a placeholder; title is dynamically updated by JS -->
</head>
<body class="bg-light">
<div id="google_translate_element"></div>
<div style="min-width: 100%;" class="pos-f-t">
<div class="collapse" id="navbarToggleExternalContent">
<div class="bg-light p-4">
<div style="float:left">
<span style="font-weight: bold; color:whitesmoke">Timezone:</span>
<select class="btn btn-primary dropdown-toggle" id="time-zone-selector">
<option value="local" selected>local</option>
<option value="UTC">UTC</option>
</select>
<span id="calendar-toggle-buttons"></span>
<button id="12hr" type="button" class="btn btn-info">Switch to 12hr</button>
<button id="clrs" type="button" class="btn btn-danger">Restore Default Settings</button>
</div>
<div style="clear:both"></div>
</div>
</div>
<nav class="navbar navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</div>
<div id="alert" class="alert alert-info alert-dismissible fade show" role="alert">
<span id="alert-content"></span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div style="text-align: center;">
<span id="loading"><img src="" width="" height="" alt="loading"></span>
</div>
<div id="calendar"></div>
<!-- jQuery and JS bundle w/ Popper.js -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- FullCalendar Below-->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/superhero/bootstrap.min.css" integrity="sha384-HnTY+mLT0stQlOwD3wcAzSVAZbrBp141qwfR4WfTqVQKSgmcgzk+oP0ieIyrxiFO" crossorigin="anonymous"> -->
<!-- darker stylesheet -->
<link href="bootstrap.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/main.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/main.min.js"></script>
<!-- FontAwesome Favicons -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<script src="config.js"></script>
<script src="script.js"></script>
<footer id="footer" class="bg-light footer fixed-bottom">
<p id="footer-content" class="fw-lighter text-center p-12"></p>
</footer>
</body>
</html>