-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (91 loc) · 4.75 KB
/
Copy pathindex.html
File metadata and controls
97 lines (91 loc) · 4.75 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
<!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="A high-end, interactive timeline documenting the chronological history of the Metal Gear Solid universe.">
<title>Metal Gear Solid — MetalGearHistory</title>
<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=Oswald:wght@400;500;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="scanlines"></div>
<div class="noise"></div>
<div class="vignette"></div>
<header class="hud-header" role="banner">
<div class="hud-header__corner hud-header__corner--tl"></div>
<div class="hud-header__corner hud-header__corner--tr"></div>
<div class="hud-header__corner hud-header__corner--bl"></div>
<div class="hud-header__corner hud-header__corner--br"></div>
<div class="hud-header__content">
<h1 class="hud-header__title" data-text="METAL GEAR SOLID">METAL GEAR SOLID</h1>
<p class="hud-header__subtitle">CANONICAL TIMELINE // CLASSIFIED</p>
<div class="hud-header__status">
<span class="status-dot"></span>
<span class="status-text">SECURE CONNECTION ESTABLISHED</span>
</div>
</div>
</header>
<nav class="filter-bar" role="navigation" aria-label="Timeline filters">
<div class="filter-bar__group filter-bar__group--view">
<button class="view-btn view-btn--active" data-view="timeline" type="button">TIMELINE VIEW</button>
<button class="view-btn" data-view="strategic" type="button">STRATEGIC OVERVIEW</button>
</div>
<div class="filter-bar__group">
<label class="filter-bar__label" for="era-filter">ERA</label>
<select id="era-filter" class="hud-select">
<option value="all">All Eras</option>
</select>
</div>
<div class="filter-bar__group">
<label class="filter-bar__label" for="protagonist-filter">PROTAGONIST</label>
<select id="protagonist-filter" class="hud-select">
<option value="all">All Operatives</option>
</select>
</div>
<div class="filter-bar__group">
<label class="filter-bar__label" for="conflict-filter">CONFLICT</label>
<select id="conflict-filter" class="hud-select">
<option value="all">All Conflicts</option>
</select>
</div>
<div class="filter-bar__group filter-bar__group--search">
<input type="text" id="search-input" class="hud-input" placeholder="SEARCH ARCHIVES..." aria-label="Search timeline">
</div>
</nav>
<nav class="game-nav" role="navigation" aria-label="Game pages">
<div class="game-nav__title">GAME ARCHIVES</div>
<div class="game-nav__links">
<a href="games/mgs3-snake-eater.html" class="game-nav__link">MGS3: Snake Eater</a>
<a href="games/portable-ops.html" class="game-nav__link">Portable Ops</a>
<a href="games/peace-walker.html" class="game-nav__link">Peace Walker</a>
<a href="games/ground-zeroes.html" class="game-nav__link">Ground Zeroes</a>
<a href="games/phantom-pain.html" class="game-nav__link">Phantom Pain</a>
<a href="games/metal-gear.html" class="game-nav__link">Metal Gear</a>
<a href="games/metal-gear-2.html" class="game-nav__link">Metal Gear 2</a>
<a href="games/metal-gear-solid-1.html" class="game-nav__link">MGS1</a>
<a href="games/metal-gear-solid-2.html" class="game-nav__link">MGS2</a>
<a href="games/metal-gear-solid-4.html" class="game-nav__link">MGS4</a>
<a href="games/rising-revengeance.html" class="game-nav__link">Rising</a>
</div>
</nav>
<main id="timeline-container" class="timeline" role="main">
<div id="timeline-view">
<div class="timeline__rail" aria-hidden="true"></div>
<div id="timeline-nodes" class="timeline__nodes"></div>
</div>
<div id="strategic-view" class="strategic-view" hidden>
<div id="strategic-content" class="strategic-content"></div>
</div>
</main>
<footer class="hud-footer" role="contentinfo">
<div class="hud-footer__content">
<p class="hud-footer__text">MetalGearHistory 2026</p>
<p class="hud-footer__text">TOTAL ARCHIVED EVENTS: <span id="event-count">0</span></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>