-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
101 lines (101 loc) · 3.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="js/calendar.min.js" defer></script>
<script src="js/season.min.js" defer></script>
<script src="js/main.min.js" defer></script>
<script src="js/streams.min.js" defer></script>
<script src="js/search.min.js" defer></script>
<script src="js/nav.min.js" defer></script>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="icon" href="assets/logo.svg" type="image/svg" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="css/styles.min.css" />
<title>Anime Calendar</title>
</head>
<body>
<div id="nav-background"></div>
<nav>
<div id="nav-left">
<a id="main" href=".">Anime Calendar</a>
</div>
<div id="nav-right">
<div id="desktop">
<a href="./help">Help</a>
<a href="./about">About</a>
</div>
<div id="nav-right-right">
<label for="search">🔎</label>
<input
id="search"
size="40"
placeholder="Search for Seasonal Anime"
autocomplete="off"
/>
<ul id="titles" style="display: none"></ul>
</div>
</div>
<svg id="mobile" viewBox="0 0 30 30" onclick="menu()">
<path d="M4 7h22M4 15h22M4 23h22"></path>
</svg>
<div id="menu">
<a href="./help">Help</a>
<a href="./about">About</a>
</div>
</nav>
<div>
<aside>
<h2>Settings</h2>
<div class="dropbox">
<label for="format">Format</label>
<select class="custom-select" id="format" onchange="CAL.format()">
<option value="0">Calendar - Full</option>
<option value="1">Calendar - Cutoff</option>
<option value="2">Calendar - Compact</option>
<option value="3">Daily</option>
</select>
</div>
<div class="dropbox">
<label for="info">Stream Info</label>
<select class="custom-select" id="info" onchange="CAL.info()">
<option value="0">Top View</option>
<option value="1">Side View</option>
<option value="2">Window View</option>
</select>
</div>
<h3>My Streams</h3>
<div class="stream-box"></div>
</aside>
</div>
<div id="content"></div>
<div id="center">
<div id="center-left">
<button
type="button"
class="arrow"
id="left"
onclick="CAL.Left();CAL.arrow()"
>
◁
</button>
<button
type="button"
class="arrow"
id="right"
onclick="CAL.Right();CAL.arrow()"
>
▷
</button>
<span id="month"></span>
</div>
<div id="center-right">
<button id="clear" onclick="CAL.clear()">Clear</button>
<button id="list" onclick="list()">Your List</button>
</div>
</div>
<div id="calendar"></div>
</body>
</html>