-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia.html
549 lines (502 loc) · 23.7 KB
/
media.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Information
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Media</title>
<meta name="description" content="Media">
<meta name="author" content="Jourdan Keillor">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<!-- General -->
<link rel="stylesheet" href="css/styles.css">
<link rel="preload" href="fonts/BerkeleyMonoVariable.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<!-- Navbar -->
<link rel="stylesheet" href="css/navbar.css">
<script src="./navbar.js"></script>
<style>
/* Define the custom font */
@font-face {
font-family: 'BerkeleyMonoVariable';
src: url('fonts/berkeley-mono-variable-2.woff2') format('woff2')
/* Add additional font formats if necessary */
}
/* Apply the custom font to specific elements */
body {
font-family: 'BerkeleyMonoVariable', monospace;
}
/* Container style */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Row style */
.row {
display: flex;
flex-wrap: wrap;
margin: 0 -10px; /* Adjust margin to compensate for column padding */
}
/* Column style */
.column {
flex: 1;
padding: 0 10px; /* Add padding to create space between columns */
}
/* Image size and centering */
.image-container {
text-align: center; /* Center-align text and inline elements */
}
.image-container img {
display: block; /* Ensure images are treated as block elements */
width: 100%; /* Set image width to 100% of its container */
height: auto; /* Maintain aspect ratio */
margin: 0 auto; /* Center the image horizontally */
}
/* Text centering */
h1, h2, h3, h4, p {
text-align: center; /* Center-align headings and paragraphs */
}
/* Adjustments for mobile devices */
@media (max-width: 768px) {
.column {
flex: 1 0 100%; /* Each column takes full width on smaller screens */
padding: 0;
}
}
/* Style the side navbar */
.side-navbar {
position: fixed;
right: 0; /* Align to the right side */
top: 50%; /* Center vertically */
transform: translateY(-50%); /* Adjust to center */
padding-top: 0px; /* Adjust according to your navbar height */
width: auto; /* Adjust width dynamically */
overflow-y: auto;
}
/* Style the tab buttons */
.tab button {
display: block;
background-color: #282828;
border: none;
outline: none;
cursor: pointer;
padding: 10px 15px;
transition: 0.3s;
font-size: 16px;
margin-bottom: 5px;
text-align: left;
border-radius: 20px; /* Rounded corners */
font-family: 'Berkeley Mono Variable', monospace;
color: var(--fg-color)
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #282828;
color: var(--highlight-color);
font-weight: bold;
}
/* Style the active/current tablink */
.tab button.active {
background-color: #282828;
color: var(--highlight-color);
font-weight: bold;
}
/* Style the container */
.container {
margin-right: 220px; /* Adjust margin-right to accommodate side navbar width */
}
/* Style the sections */
section {
margin-top: 40px; /* Add space between sections */
}
canvas {
position: fixed;
top: 0;
left: 0;
z-index: -1; /* Ensure the canvas is behind other content */
width: 100%;
height: 100%;
filter: blur(10px);
}
.narrow-block {
width: 50%; /* Adjust the width as needed */
margin: 0 auto; /* Center-align the block */
text-align: justify; /* Justify the text */
padding: 10px; /* Add padding for better readability */
}
</style>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/avatar1.jpg">
</head>
<body>
<!-- Navbar
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<nav class="navbar">
<!-- This will display a link to the index page on the upper-left corner -->
<div class="header-title">
<a href="index.html">jozk.me</a>
</div>
<!-- This is for hamberger menu -->
<label for="check">
<input type="checkbox" id="check" class="toggle-button"/>
<span></span>
<span></span>
<span></span>
</label>
<!-- This is the link for the different pages -->
<div class="navbar-links">
<ul>
<li><a href="about.html" class="tab">About</a></li>
<li><a href="socials.html" class="tab">Socials</a></li>
<li><a href="media.html" class="tab active">Media</a></li>
<li><a href="projects.html" class="tab">Projects</a></li>
</ul>
</div>
</nav>
<!-- Unique side navbar -->
<nav class="side-navbar">
<div class="tab">
<button class="tablinks" data-section="Music" onclick="scrollToSection('Music')">Music</button>
<button class="tablinks" data-section="TV" onclick="scrollToSection('TV')">TV</button>
<button class="tablinks" data-section="Movies" onclick="scrollToSection('Movies')">Movies</button>
<button class="tablinks" data-section="Games" onclick="scrollToSection('Games')">Games</button>
<button class="tablinks" data-section="Books" onclick="scrollToSection('Books')">Books</button>
</div>
</nav>
<!-- Lavparticle -->
<canvas id="canvas"></canvas>
<script src="scripts/particles/lav_particle.js"></script>
<!-- Call the animation function -->
<script>
// Wait for the DOM to be fully loaded
document.addEventListener('DOMContentLoaded', function() {
// Call the function to start the animation
startAnimation();
});
</script>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<!-- Title -->
<p>Content I'm Loving - May, 2024 </p>
<!-- Music Section -->
<section id="Music">
<h2>Music</h2>
<!-- Your music content here -->
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://hypn0ticbrass.bandcamp.com/album/this-is-a-mindfulness-drill-a-reimagining-of-richard-youngs-sapphie">
<img src="images/media/music/tiamd.webp" alt="This is a Mindfulness Drill: A Reimagining of Richard Youngs' 'Sapphie' (2021)">
</a>
</div>
<a href="https://hypn0ticbrass.bandcamp.com/album/this-is-a-mindfulness-drill-a-reimagining-of-richard-youngs-sapphie">
<h4>This is a Mindfulness Drill: A Reimagining of Richard Youngs' 'Sapphie' (2021) - Hypnotic Brass Ensemble</h4>
</a>
<p>clean, fuzzy, warm, eerie, delicate, dynamic, living, cyclic, zone-out, floating</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://futureislands.bandcamp.com/album/people-who-aren-t-there-anymore">
<img src="images/media/music/pwata.webp" alt="People Who Aren’t There Anymore (2024)">
</a>
</div>
<a href="https://futureislands.bandcamp.com/album/people-who-aren-t-there-anymore">
<h4>People Who Aren’t There Anymore (2024) - Future Islands</h4>
</a>
<p>this album has copped a bit of flak online, but it's a solid Future Islands record to me</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://kamasiwashington.bandcamp.com/album/fearless-movement">
<img src="images/media/music/fmove.webp" alt="Fearless Movement (2024)">
</a>
</div>
<a href="https://kamasiwashington.bandcamp.com/album/fearless-movement">
<h4>Fearless Movement (2024) - Kamasi Washington</h4>
</a>
<p>huge record with so many different movements, arrangements, and feelings</p>
</div>
</div>
<h2>Also in Rotation</h2>
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://en.wikipedia.org/wiki/Filthy_Underneath">
<img src="images/media/music/funde.webp" alt="Filthy Underneath (2024)">
</a>
</div>
<a href="https://en.wikipedia.org/wiki/Filthy_Underneath">
<h4>Filthy Underneath (2024) - Nadine Shah</h4>
</a>
</div>
<div class="column">
<div class="image-container">
<a href="https://sprintsmusic.bandcamp.com/album/letter-to-self">
<img src="images/media/music/ltsel.jpg" alt="Letter to Self (2024)">
</a>
</div>
<a href="https://sprintsmusic.bandcamp.com/album/letter-to-self">
<h4>Letter To Self (2024) - Sprints</h4>
</a>
</div>
<div class="column">
<div class="image-container">
<a href="https://etjusticepourtous.bandcamp.com/album/hyperdrama">
<img src="images/media/music/hyper.webp" alt="Hyperdrama (2024)">
</a>
</div>
<a href="https://etjusticepourtous.bandcamp.com/album/hyperdrama">
<h4>Hyperdrama (2024) - Justice</h4>
</a>
</div>
</div>
</section>
<!-- TV Section -->
<section id="TV">
<h2>TV</h2>
<!-- Your TV content here -->
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://www.dropout.tv/game-changer">
<img src="images/media/tv/gchan.jpg" alt="Game Changer (Ongoing)">
</a>
</div>
<a href="https://www.dropout.tv/game-changer">
<h3>Game Changer (Ongoing)</h3>
</a>
<p>"the only game show where the game changes every show" - I could watch this show forever</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://en.wikipedia.org/wiki/3_Body_Problem_(TV_series)">
<img src="images/media/tv/3bpro.jpg" alt="3 Body Problem (2024)">
</a>
</div>
<a href="https://en.wikipedia.org/wiki/3_Body_Problem_(TV_series)">
<h3>3 Body Problem (2024)</h3>
</a>
<p>it's wonky as hell but it's got a lot to love</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://www.dropout.tv/total-forgiveness">
<img src="images/media/tv/tforg.jpg" alt="Total Forgiveness (2019)">
</a>
</div>
<a href="https://www.dropout.tv/total-forgiveness">
<h3>Total Forgiveness (2019)</h3>
</a>
<p>ally and grant's tv experiment was no easier a watch the second time round, but it's as engaging as ever</p>
</div>
</div>
</section>
<!-- Movies Section -->
<section id="Movies">
<h2>Movies</h2>
<!-- Your movies content here -->
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://en.wikipedia.org/wiki/Enys_Men">
<img src="images/media/movies/emen.jpg" alt="Enys Men (2023)">
</a>
</div>
<a href="https://en.wikipedia.org/wiki/Enys_Men">
<h3>Enys Men (2023)</h3>
</a>
<p>as in <i>Annihilation</i>, a scientist enters a mysterious coastal space and finds herself detached from the rules of reality. light on plot, heavy on vibes</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://en.wikipedia.org/wiki/Civil_War_(film)">
<img src="images/media/movies/cwar.jpg" alt="Civil War (2024)">
</a>
</div>
<a href="https://en.wikipedia.org/wiki/Civil_War_(film)">
<h3>Civil War (2024)</h3>
</a>
<p>i'm still an Alex Garland fan and this didn't disappoint</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://watch.joelycett.com/">
<img src="images/media/movies/mmmhd.jpg" alt="More, More, More! How Do You Lycett? How Do You Lycett? (2022)">
</a>
</div>
<a href="https://watch.joelycett.com/">
<h3>More, More, More! How Do You Lycett? How Do You Lycett? (2022)</h3>
</a>
<p>i'm a sucker for a comedy special with an overarching story and every step of the way this one pays off - it legitimately brought a tear to my eye</p>
</div>
</div>
</section>
<!-- Games Section -->
<section id="Games">
<h2>Games</h2>
<!-- Your games content here -->
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://store.steampowered.com/app/1373960/INDIKA/">
<img src="images/media/games/indik.jpg" alt="INDIKA (2024)">
</a>
</div>
<a href="https://store.steampowered.com/app/1373960/INDIKA/">
<h3>INDIKA (2024)</h3>
</a>
<p>have only just started and i've never felt more like a quare peg forced through a round hole - and i never know what the game is gonna do next</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://store.steampowered.com/app/493520/GTFO/">
<img src="images/media/games/gtfo.webp" alt="GTFO (2021)">
</a>
</div>
<a href="https://store.steampowered.com/app/493520/GTFO/">
<h3>GTFO (2021)</h3>
</a>
<p>dropped to the bottom of an monster-infested facility armed with very few resources and even less visibility - can you escape? this game is unrelenting</p>
</div>
<!--
<div class="column">
<div class="image-container">
<a href="game-url">
<img src="game-image" alt="game-title">
</a>
</div>
<a href="game-url">
<h4>game-title</h4>
</a>
</div>
-->
</div>
</section>
<!-- Books Section -->
<section id="Books">
<h2>Books</h2>
<!-- Your books content here -->
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://www.goodreads.com/en/book/show/12287209">
<img src="images/media/books/wool.jpg" alt="Wool (2011) - Hugh Howey">
</a>
</div>
<a href="https://www.goodreads.com/en/book/show/12287209">
<h3>Wool (2011) - Hugh Howey</h3>
</a>
<p>i watched the show (<i>Silo</i>) and didn't mind the first half, but felt that the murder/investigation plot ground the pacing to a halt. the pacing in the book was much better, though I'm curious to see how they handle the lack of plot available for season 2</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://www.goodreads.com/book/show/44492285-dune-messiah">
<img src="images/media/books/dmess.jpg" alt="Dune Messiah (1969) - Frank Herbert">
</a>
</div>
<a href="https://www.goodreads.com/book/show/44492285-dune-messiah">
<h3>Dune Messiah (1969) - Frank Herbert</h3>
</a>
<p>another adaptation pick - an easy enough read, with enough to keep me engaged, but it was reasonably light-on for plot. i'm curious to see whether Paul calling Hitler's Holocause 'rookie numbers' or telling Irulan to 'cuck him' will make it into the film version</p>
</div>
<div class="column">
<div class="image-container">
<a href="https://www.goodreads.com/book/show/40121328-cribsheet">
<img src="images/media/books/csadd.webp" alt="Cribsheet: A Data-Driven Guide to Better, More Relaxed Parenting, from Birth to Preschool (2019) - Emily Oster">
</a>
</div>
<a href="https://www.goodreads.com/book/show/40121328-cribsheet">
<h4>Cribsheet: A Data-Driven Guide to Better, More Relaxed Parenting, from Birth to Preschool (2019) - Emily Oster</h4>
</a>
<p>a little light prep-work</p>
</div>
</div>
<h2>Faves and Personal Classics</h2>
<div class="row">
<div class="column">
<div class="image-container">
<a href="https://www.goodreads.com/book/show/17934530-annihilation">
<img src="images/media/books/annih.jpg" alt="Annihilation (2014) - Jeff Vandermeer">
</a>
</div>
<a href="https://www.goodreads.com/book/show/17934530-annihilation">
<h4>Annihilation (2014) - Jeff Vandermeer</h4>
</a>
</div>
<div class="column">
<div class="image-container">
<a href="https://www.goodreads.com/book/show/24611567-songs-of-a-dead-dreamer-and-grimscribe">
<img src="images/media/books/soadd.jpg" alt="Songs of a Dead Dreamer and Grimscribe (2015) - Thomas Ligotti">
</a>
</div>
<a href="https://www.goodreads.com/book/show/24611567-songs-of-a-dead-dreamer-and-grimscribe">
<h4>Songs of a Dead Dreamer and Grimscribe (2015) - Thomas Ligotti</h4>
</a>
</div>
<div class="column">
<div class="image-container">
<a href="https://www.goodreads.com/book/show/44313716-saga-compendium-one">
<img src="images/media/books/saga.jpg" alt="Saga, Compendium One (2019) - Brian K. Vaughan, Fiona Staples">
</a>
</div>
<a href="https://www.goodreads.com/book/show/44313716-saga-compendium-one">
<h4>Saga, Compendium One (2019) - Brian K. Vaughan, Fiona Staples</h4>
</a>
</div>
</div>
</section>
</div>
<div class="narrow-block">
<p>this is a new page. i'm still sussing out exactly how i want it to work. it'd be ace to link directly to the media, and for musicians with bandcamp pages, that's what i've done, but for media that'll inevitably bounce between streaming services i'm thinking a wiki entry is more helpful than a corporation's landing page. for books i've linked to goodreads - i don't love that, but i'm not sure what'd be better. feel free to @ me with any thoughts, suggestions, and media recs</p>
</div>
<!-- Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<footer
style="bottom: 0; width: 100%; height: 50px; color: #282828; text-align: center; display: flex; flex-direction: column; justify-content: center;">
<div class="row">
<div class="column">
<br>
<br>
<br>
<br>
<br>
<p style="font-size: 75%;">© 2023 Jourdan Keillor · <a href="/pages/extra/privacy.html">Privacy</a>
<br>Powered by <a href="https://vercel.com/">Vercel</a> and forked from <a
href="https://littlelink.io/">LittleLink</a>
</p>
</div>
</div>
</footer>
<script>
// Function to scroll to a specific section
function scrollToSection(sectionId) {
const section = document.getElementById(sectionId);
section.scrollIntoView({ behavior: 'smooth' });
}
// Function to highlight the tab when its associated section comes into view
document.addEventListener('scroll', function() {
const sections = document.querySelectorAll('section');
const scrollPosition = window.scrollY;
sections.forEach(function(section) {
if (scrollPosition >= section.offsetTop && scrollPosition < section.offsetTop + section.offsetHeight) {
const sectionId = section.getAttribute('id');
const tab = document.querySelector('.tab button[data-section="' + sectionId + '"]');
if (tab) {
document.querySelectorAll('.tab button').forEach(function(btn) {
btn.classList.remove('active');
});
tab.classList.add('active');
}
}
});
});
</script>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>