-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.html
More file actions
33 lines (31 loc) · 1.1 KB
/
viewer.html
File metadata and controls
33 lines (31 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solution - The Solution Database</title>
<link rel="stylesheet" href="style.css">
<script src="scripts/theme.js" defer></script>
<script src="scripts/markdown-parser.js" defer></script>
<script src="scripts/viewer.js" defer></script>
<script src="scripts/marked.min.js"></script>
</head>
<body>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
<div class="container">
<div class="top-bar">
<a href="#" id="backButton" class="back-button">← Back</a>
<h1 id="solutionTitle" class="solution-title">Solution</h1>
</div>
<div id="markdownContent" class="markdown-content">
<!-- Markdown content will be loaded here -->
<div class="loading">Loading solution...</div>
</div>
</div>
</body>
</html>