-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
45 lines (36 loc) · 1.51 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="touch-icon.png">
<!-- note by unlimicon from the Noun Project -->
<link rel="icon" href="icon.png">
<title>Scratchpad</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="vendor/balloon.css">
</head>
<body class="day">
<div id="sidebar"></div>
<main>
<textarea name="scratchpad" id="scratchpad" autocorrect="off" autocapitalize="off" spellcheck="false" class="mousetrap"></textarea>
</main>
<footer>
<p>scratchpad.<br><a href="https://github.com/sesh/scratchpad">gh→</a></p>
<p id="tools"></p>
</footer>
<script src="vendor/mousetrap.min.js"></script>
<script src="app.js"></script>
<script src="vendor/write-good.dist.js" async></script>
<script src="vendor/marked.min.js" async></script>
<script src="vendor/highlight.min.js" async></script>
<script src="vendor/jwt-decode.js" async></script>
<script src="vendor/eff-short-passphrase.js" async></script>
<script src="vendor/prettier.js" async></script>
<script src="vendor/prettier-parser-html.js" async></script>
</body>
</html>