-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.68 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Knowledge Base</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<nav class="sidebar" id="sidebar">
<div class="theme-switcher" id="themeSwitcher">
<div class="theme-icon active" data-theme="light">
<i class="fas fa-sun"></i>
</div>
<div class="theme-icon" data-theme="dark">
<i class="fas fa-moon"></i>
</div>
</div>
<h1>Knowledge Base</h1>
<div class="search-container">
<input type="text" id="search-input" placeholder="Search articles...">
<i class="fas fa-search search-icon"></i>
<div id="search-results" class="search-results"></div>
</div>
<div id="nav-container"></div>
</nav>
<div class="sidebar-overlay" id="sidebarOverlay"></div>
<main class="content">
<button id="menu-toggle" class="menu-toggle">
<i class="fas fa-bars"></i>
</button>
<div id="content-display" class="markdown-body">
<h1>Welcome to My Knowledge Base</h1>
<p>Select a topic from the sidebar to begin.</p>
</div>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>