-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (49 loc) · 2.55 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
<head>
<title>fantanosort - theneedledrop reviews, sorted</title>
<link rel="favicon" href="./fantanosort/favicon.ico"/> <!-- this is stupid but i think it works -->
<link rel="icon" href="./fantanosort/favicon.ico"/>
<link rel="stylesheet" href="./style.css"/>
<meta name="title" content="fantanosort"/>
<meta name="description" content="theneedledrop reviews, sorted"/>
<meta name="twitter:title" content="fantanosort"/>
<meta name="twitter:description" content="theneedledrop reviews, sorted"/>
<meta charset="UTF-8">
</head>
<body>
<div>
<div style="margin-top:4em;margin-left:4em;">
This is a list of the majority of Anthony Fantano's album reviews — though I'm sure I'm missing some — made easily searchable and sortable, by score and date. Dates and times are in UTC, and data is updated daily.<br><br>
If you want to help or correct some data, head over to the <a href="https://github.com/kiawildberger/fantanosort">repo</a> and look in override.js for instructions on how to edit the review details.
</div><br>
<input type="text" id="filter" placeholder="Filter"> <input type="button" value="Apply" title="leave search blank for full list"><span id="countresults"></span>
<input type="button" value="View chart" id="chartbutton" title="i love data visualization" style="width:6em;">
<div class="dropmode">
<label for="sortmode-drop">Sort by: </label>
<select id="sortmode-drop">
<option value="null" selected disabled hidden></option>
<option value="0">Date (latest)</option>
<option value="3">Date (oldest)</option>
<option value="1">Score (10s first)</option>
<option value="2">Score (0s first)</option>
</select>
</div>
<div id="chartdiv" style="display:none;">
<canvas id="chart"></canvas>
</div>
<table id="table">
<tr id="headers">
<th>Video</th>
<th>Album</th>
<th>Artist</th>
<th>Score<span id="ssort">latest</span></th>
<!-- — for unsorted, ↑ for ascending score and ↓ for descending -->
<!-- descending means the top scores are on top -->
<th>Date</th>
</tr>
<tr>
</tr>
</table>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/chart.min.js"></script>
<script src="index.js"></script>
</body>