-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
126 lines (109 loc) · 4.21 KB
/
videos.html
File metadata and controls
126 lines (109 loc) · 4.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Complete video archive of Terry A. Davis — videos from the Davisanism and Terry Davis YouTube channels.">
<title>Video Archive — Terry A. Davis</title>
<link rel="stylesheet" href="style.css">
</head>
<body data-page="videos">
<nav>
<div class="nav-in">
<a class="nav-brand" href="index.html">
<span>./</span>
<span class="nav-brand-name">TERRY A. DAVIS</span>
</a>
<button class="nav-toggle" id="nav-toggle" aria-expanded="false" aria-controls="nav-links" aria-label="Toggle menu">☰</button>
<ul class="nav-links" id="nav-links" role="list">
<li><a href="index.html">Home</a></li>
<li><a href="videos.html" aria-current="page">Videos</a></li>
<li><a href="wikipedia.html">Wikipedia</a></li>
<li><a href="index.html#about-templeos">About TempleOS</a></li>
</ul>
</div>
</nav>
<main>
<header class="archive-header">
<div class="archive-header-in">
<h1 class="archive-title"><span>Video Archive</span></h1>
<p class="archive-meta">
<span id="total-count">—</span> videos —
categories auto-detected from videos.json —
Popular = view_count ≥ 50,000
</p>
</div>
</header>
<div class="controls-bar" role="search" aria-label="Filter, search and sort videos">
<div class="controls-in">
<div class="search-wrap">
<span class="search-icon" aria-hidden="true">></span>
<label for="search-input" class="sr-only">Search by title or description</label>
<input
type="search"
id="search-input"
class="search-input"
placeholder="Search title or description…"
autocomplete="off"
spellcheck="false"
>
</div>
<div class="filter-group" id="filter-cats"
role="group" aria-label="Filter by category">
</div>
<div class="filter-group" id="filter-channels"
role="group" aria-label="Filter by channel">
</div>
<div class="controls-right">
<label for="sort-select" class="sr-only">Sort order</label>
<select id="sort-select" class="sort-select" aria-label="Sort videos">
<option value="default">Order: Default</option>
<option value="newest">Newest first</option>
<option value="oldest">Oldest first</option>
<option value="views">Most viewed</option>
</select>
<button id="refresh-btn" class="btn btn-ghost btn-sm" aria-label="Reload videos from videos.json">
REFRESH
</button>
<button id="csv-btn" class="btn btn-ghost btn-sm" aria-label="Export current results as CSV">
⇓ CSV
</button>
</div>
</div>
</div>
<div class="results-bar" aria-live="polite" aria-atomic="true">
<span id="results-count">Loading…</span>
</div>
<div class="grid-wrap">
<div
id="video-grid"
class="video-grid"
role="list"
aria-label="Video results"
>
<div class="loading-state">Loading videos.json…</div>
</div>
</div>
<div id="pagination-wrap" aria-label="Pagination"></div>
</main>
<footer class="site-footer">
<div class="footer-in">
<div class="footer-col">
<span class="footer-label">Site</span>
<a href="index.html">Home</a>
<a href="videos.html">Videos</a>
<a href="wikipedia.html">Wikipedia</a>
</div>
<div class="footer-col">
<span class="footer-label">External</span>
<a href="https://templeos.org" target="_blank" rel="noopener noreferrer">TempleOS.org</a>
<a href="https://archive.org/details/TerryADavis_TempleOS" target="_blank" rel="noopener noreferrer">Internet Archive</a>
<a href="https://www.youtube.com/@Davisanism" target="_blank" rel="noopener noreferrer">Davisanism (YouTube)</a>
<a href="https://www.youtube.com/@TerryADavis" target="_blank" rel="noopener noreferrer">Terry Davis (YouTube)</a>
</div>
<p class="footer-copy">RIP TERRY A. DAVIS — 1969–2018</p>
</div>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>