Add playlist link button to watchlist pages; fix LastCinema slug

- Each panel now has a full-width '→ OPEN FULL PLAYLIST ON YOUTUBE' link
  below the embed — resolves YouTube showing single video instead of playlist
- Link inherits panel accent color, inverts on hover
- Renamed TheLastCinema-watchlist.md → LastCinema-watchlist.md so build.py
  generates lastcinema.html (matching hub link)
- Regenerated all 5 collection pages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-28 14:32:20 +02:00
parent dd51655792
commit aec3300e40
7 changed files with 223 additions and 2 deletions

View File

@@ -255,6 +255,24 @@
.panel-teal { --border-color: var(--wl-teal); }
.panel-green { --border-color: var(--wl-green); }
.panel-toucan { --border-color: var(--wl-toucan); }
.playlist-link {
display: block;
padding: 0.85rem 1.25rem;
font-weight: 700;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 0.08em;
color: var(--border-color);
text-decoration: none;
border-top: 1px solid var(--border-color);
transition: background 100ms ease, color 100ms ease;
}
.playlist-link:hover {
background: var(--border-color);
color: var(--bg-void);
}
</style>
</head>
<body>
@@ -289,6 +307,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLeYBqpyQVyaYqtBAfbNy6d_xtxcrjCVy6" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
<section class="playlist-panel panel-green">
@@ -303,6 +324,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLkTkIkgJg3GsmoEsh4a9-YRUuZtHNr0w9" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
<section class="playlist-panel panel-toucan">
@@ -317,6 +341,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLa8L4_jjaB62-j89zcyfQ_ZV7bVceMSDB" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
<section class="playlist-panel panel-teal">
@@ -331,6 +358,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLJQUAVYdQ53t3hqA1t1hNcWrrZT5sGMfj" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
<section class="playlist-panel panel-green">
@@ -345,6 +375,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLgp6-KTN0LyAkDMmtGROSmer8IpL7kUSd" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
<section class="playlist-panel panel-toucan">
@@ -359,6 +392,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLK5fE38XOCnpWSvoxMNL8igQxPZlAi4_F" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
<section class="playlist-panel panel-teal">
@@ -373,6 +409,9 @@
allowfullscreen>
</iframe>
</div>
<a href="https://www.youtube.com/playlist?list=PLbOF9TQmQrNgWHaLCPaE81l4hEL-2Rrjf" target="_blank" rel="noopener" class="playlist-link">
→ OPEN FULL PLAYLIST ON YOUTUBE
</a>
</section>
</main>