-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 2.02 KB
/
index.html
File metadata and controls
65 lines (58 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LSPD MDT Knowledge Base</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=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="app-shell">
<aside class="sidebar">
<div class="brand-card">
<div class="brand-top">
<div class="badge">LSPD</div>
<div class="status-dot"></div>
</div>
<h1>LSPD MDT</h1>
<p id="site-subtitle">Knowledge Base</p>
</div>
<nav id="tab-nav" class="tab-nav" aria-label="Tabs"></nav>
<div class="sidebar-footer">
<p class="footer-label">Status</p>
<div id="status-pill" class="status-pill">Active</div>
</div>
</aside>
<main class="content">
<header class="topbar">
<div>
<p class="eyebrow">INFORMATION SYSTEM</p>
<h2 id="page-title">Loading...</h2>
</div>
<div class="topbar-right">
<input id="search-input" type="text" placeholder="Search..." aria-label="Search content" />
</div>
</header>
<section id="hero-card" class="hero-card hidden">
<div class="hero-text">
<p class="hero-label" id="hero-label">Section</p>
<h3 id="hero-title"></h3>
<p id="hero-description"></p>
</div>
<div id="hero-image-wrap" class="hero-image-wrap hidden">
<img id="hero-image" alt="Hero image" />
</div>
</section>
<section id="content-grid" class="content-grid"></section>
<section id="empty-state" class="empty-state hidden">
<h3>No results found</h3>
<p>Try a different search term.</p>
</section>
</main>
</div>
<script src="script.js"></script>
</body>
</html>