-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunits.html
More file actions
73 lines (69 loc) · 3.32 KB
/
Copy pathunits.html
File metadata and controls
73 lines (69 loc) · 3.32 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
<!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="Explore all APUSH periods - Colonial America through Modern Era">
<title>APUSH Units Overview | APUSH Learning Hub</title>
<link rel="stylesheet" href="styles.css?v=museum1">
</head>
<body class="museum-site">
<nav class="navbar" role="navigation" aria-label="Main navigation">
<div class="nav-container">
<a href="index.html" class="logo" aria-label="APUSH HUB Home">
<span class="logo-mark" aria-hidden="true"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M4 19V5l8-3 8 3v14"/><path d="M8 10h8M8 14h5"/></svg></span>
<span class="logo-text">APUSH HUB</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation menu" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="units.html" class="nav-link active" aria-current="page">Units</a></li>
<li><a href="resources.html" class="nav-link">Resources</a></li>
<li><a href="schedule.html" class="nav-link">Schedule</a></li>
<li><a href="dashboard.html" class="nav-link">Dashboard</a></li>
</ul>
<div class="nav-controls">
<div data-theme-toggler-root class="theme-toggler-root" hidden aria-hidden="true"></div>
<button type="button" class="settings-gear-btn" aria-label="Open settings" title="Settings">
<span>⚙️</span>
</button>
</div>
</div>
</nav>
<main class="main-content">
<section class="units-header page-hero" aria-labelledby="units-heading">
<div class="container">
<span class="section-label">Curriculum</span>
<h1 id="units-heading" class="page-title display-heading">Explore the Periods</h1>
<p class="page-subtitle">Curated museum-style exhibits for all eight AP U.S. History periods.</p>
</div>
</section>
<section class="units-grid-section" aria-labelledby="periods-heading">
<div class="container">
<h2 id="periods-heading" class="sr-only">APUSH Periods</h2>
<div class="units-grid" id="units-grid" role="list">
<!-- Period cards will be dynamically generated -->
</div>
</div>
</section>
</main>
<footer class="footer" role="contentinfo">
<div class="container">
<p>© 2026 APUSH Learning Hub. Designed for AP U.S. History exam preparation.</p>
</div>
</footer>
<script src="apush-data.js"></script>
<script src="user-session.js"></script>
<script src="auth-guard.js"></script>
<script src="openai-api.js"></script>
<script src="script.js"></script>
<script src="theme-toggler.js"></script>
<script src="settings-modal.js"></script>
<script src="museum-reveal.js" defer></script>
<script src="units.js"></script>
</body>
</html>