-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1001 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
Allow external and local media to be loaded (should be fine) -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; media-src *; img-src *;">
<link href="./styles.css" rel="stylesheet">
<title>Discord Viewer</title>
</head>
<!-- Main page structure -->
<body>
<h1 id='title'>Discord Viewer</h1>
<h2>Offline optimized viewer for discord messages.</h2>
<hr>
<!-- Message panel -->
<div id='messages'>
</div>
<!-- Search sidemenu -->
<div id='search'>
<input id='searchbox'></input>
<button id='searchbutton'>Search</button>
<h3>Start</h3>
<input id='startbox' size=6></input>
<div id='searchout'>
</div>
</div>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>