-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhistory.html
More file actions
44 lines (42 loc) · 1.42 KB
/
history.html
File metadata and controls
44 lines (42 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Viewed Videos</title>
<link rel="stylesheet" href="styles/history_style.css"/>
<script src="javascripts/VideoHistory.js" defer></script>
</head>
<body>
<header>
<h1>TidyTube</h1>
<h3>Search up the fun 🔍</h3>
</header>
<!--
If webpage is empty, display text encouraging user to watch videos
Otherwise, display videos from IndexedDB as an HTML list
Sort videos by latest watch order
Display small thumbnail images, with information on the right
Have title at top, channel name at middle, and date uploaded at bottom
Categorise videos by date watched
-->
<div id="left_video_column">
<ul>
</ul>
</div>
<div id="right_tag_column">
<div id="ShowTagsHere">
</div>
</div>
<footer>
<a class="button" href="index.html">Main Page</a>
<button class="button">Clear History</button>
<div class="History_Options">
<button class="exportbutton">Export History ▼</button>
<div id="Export_Options">
<a download="videohistory.csv" href='#' class="button" id="LinkToCSV">As CSV</a>
<a download="videohistory.json" href='#' class="button" id="LinkToJSON">As JSON</a>
</div>
</div>
</footer>
</body>
</html>