-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
48 lines (43 loc) · 1.51 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Details - Retro Flix</title>
<link rel="stylesheet" href="/css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="theme-toggle">
<button id="themeToggle" class="theme-toggle-btn">
<span class="sun">☀️</span>
<span class="moon">🌙</span>
</button>
</div>
<div class="container">
<h1 class="retro-title">RETRO FLIX</h1>
<!-- Details Container -->
<div class="details-container">
<div class="details-content">
<!-- Content will be loaded dynamically -->
<div class="loading">LOADING...</div>
</div>
</div>
<!-- Separate Download Section -->
<div class="downloads-container">
<h2 class="section-title">DOWNLOAD LINKS</h2>
<div class="downloads-grid">
<!-- Downloads will be loaded here -->
<div class="downloads-loading">LOADING DOWNLOADS...</div>
</div>
</div>
<!-- Bottom Navigation -->
<nav class="bottom-nav">
<a href="index.html">HOME</a>
<a href="/search.html">SEARCH</a>
<a href="/about.html">ABOUT</a>
</nav>
</div>
<script src="/js/details.js"></script>
</body>
</html>