-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatchlist.html
More file actions
111 lines (103 loc) · 4.49 KB
/
Copy pathwatchlist.html
File metadata and controls
111 lines (103 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Watchlist — BOLT.</title>
<meta name="description" content="My curated movie watchlist — franchises, series, and standalone films." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:ital,wght@0,300;0,400;0,500;1,400&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="data/style.css" />
</head>
<body>
<!-- Grain overlay -->
<div class="grain" aria-hidden="true"></div>
<!-- Header -->
<header class="site-header">
<a href="index.html" class="logo">BOLT<span class="logo-dot">.</span></a>
<nav class="header-nav" aria-label="Primary">
<a href="index.html#work">Work</a>
<a href="watchlist.html" class="active">Watchlist</a>
<a href="blog.html">Blog</a>
<a href="index.html#contact">Contact</a>
<span class="status"><span class="status-dot" aria-hidden="true"></span>Available for work</span>
</nav>
</header>
<main id="top">
<!-- Hero -->
<section class="hero" aria-labelledby="watchlist-title">
<p class="kicker mono">Personal collection</p>
<h1 id="watchlist-title" class="hero-title">
Movies I want to<br />
<em>watch</em>
</h1>
<p class="hero-sub">
A curated collection of films — franchises, series, and standalone works. Tracking what I've watched, what I'm currently watching, and what's on my radar.
</p>
</section>
<!-- Currently Watching -->
<section id="currently-watching" class="section" aria-labelledby="currently-watching-title">
<div class="section-head">
<h2 id="currently-watching-title" class="section-title">Currently watching</h2>
</div>
<div id="currently-watching-list" class="watchlist-grid">
<!-- Populated by data/script.js -->
</div>
</section>
<!-- Franchises -->
<section id="franchises" class="section" aria-labelledby="franchises-title">
<div class="section-head">
<h2 id="franchises-title" class="section-title">Franchises</h2>
<span class="section-link mono" id="franchise-count">0 franchises</span>
</div>
<div id="franchises-summary" class="section-link" style="cursor: pointer; display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;">
<span id="franchises-summary-text">Click to expand</span>
</div>
<div id="franchises-list" class="franchises-list" style="display: none;">
<!-- Populated by data/script.js -->
</div>
</section>
<!-- Standalone -->
<section id="standalone" class="section" aria-labelledby="standalone-title">
<div class="section-head">
<h2 id="standalone-title" class="section-title">Standalone films</h2>
<span class="section-link mono" id="standalone-count">0 films</span>
</div>
<div id="standalone-summary" class="section-link" style="cursor: pointer; display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;">
<span id="standalone-summary-text">Click to expand</span>
</div>
<div id="standalone-list" class="watchlist-grid" style="display: none;">
<!-- Populated by data/script.js -->
</div>
</section>
<!-- Stats -->
<section class="section stats-section" aria-labelledby="stats-title">
<h2 id="stats-title" class="sr-only">Watchlist statistics</h2>
<div class="stats-grid">
<div class="stat-card">
<p class="stat-number mono" id="stat-total">0</p>
<p class="stat-label mono">Total films</p>
</div>
<div class="stat-card">
<p class="stat-number mono" id="stat-watched">0</p>
<p class="stat-label mono">Watched</p>
</div>
<div class="stat-card">
<p class="stat-number mono" id="stat-watching">0</p>
<p class="stat-label mono">Currently watching</p>
</div>
<div class="stat-card">
<p class="stat-number mono" id="stat-pending">0</p>
<p class="stat-label mono">Pending</p>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<span class="mono">© <span id="year">2026</span> BOLT.</span>
<span class="mono">Designed & built by BOLT</span>
</footer>
<script src="data/script.js"></script>
</body>
</html>