-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (45 loc) · 1.81 KB
/
Copy pathindex.html
File metadata and controls
56 lines (45 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning Radar</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Main App Wrapper Container -->
<div class="app-body">
<!-- Centered Header with Centered Logo Placeholder -->
<header class="site-header">
<button class="btn menu-toggle" id="menu-toggle" aria-label="Toggle Menu" aria-expanded="false" aria-controls="sidebar">☰</button>
<div class="logo">
<span><img src="graphics/LearningRadar-logo.png" alt="Learning Radar Logo"></span>
</div>
</header>
<!-- Wrapper for Sidebar and Main Content Area (Stays between header and footer) -->
<div class="content-wrapper">
<!-- Backdrop shown behind the menu on open, click to dismiss -->
<div class="sidebar-overlay" id="sidebar-overlay" hidden></div>
<!-- Collapsible Left-Side Menu (Hidden by default, constrained between header and footer) -->
<nav class="sidebar" id="sidebar" aria-hidden="true">
<div class="sidebar-content">
<h2>Quizzes</h2>
<!-- Populated automatically from quiz-registry.js — do not hand-edit -->
<ul class="quiz-menu-list"></ul>
</div>
</nav>
<!-- Main Layout Wrapper -->
<div class="main-layout">
<!-- Main Content Area -->
<main class="content-area">
</main>
</div>
</div>
<footer class="site-footer">
<p>© 2026 Learning Radar | All rights reserved | <a href="#privacy">Privacy Policy</a> | <a href="#terms">Terms of Service</a></p>
</footer>
</div>
<script src="registry.js"></script>
<script src="app.js"></script>
</body>
</html>