-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.19 KB
/
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
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf8'/>
<meta name='theme-color' content='#2EA967'/>
<meta name='viewport' content='width=device-width, initial-scale=1, viewport-fit=cover'/>
<link rel='shortcut icon' href='/favicon.ico'/>
<title>Discord Active Developer tool</title>
<meta name='og:site_name' content='disc-active-dev.cynthia.dev'/>
<meta name='og:title' content="Discord Active Developer starter pack"/>
<!-- todo: og:image -->
<meta name='description' content='Get started with Discord-related development and earn a sweet badge on your profile.'/>
<meta name='og:description' content='Get started with Discord-related development and earn a sweet badge on your profile.'/>
</head>
<body>
<noscript>
<div class='nojs'>
<h1 class='nojs-header'>JavaScript is required</h1>
<div class='nojs-body'>
In order to use this website, JavaScript must be enabled in your browser. If you disabled it in the
first place, I'm assuming you know where the enable button is.. :p
</div>
</div>
</noscript>
<div id='app'></div>
<script type='module' src='./src/web.ts'></script>
</body>
</html>