-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.35 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
<!doctype html>
<html>
<head>
<title>DownDoc</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="actions">
<input type="button" class="auth" value="Connect to Drive">
<input type="button" class="save" value="Save as a Google document">
<input type="text" class="title" value="Untitled Document">
<input type="button" class="upload" value="Save">
<input type="button" class="savecancel" value="Cancel">
<span class="docurl"></span>
</div>
<textarea id="editor" disabled="disabled">#DownDoc
Write your [Google documents](https://drive.google.com) in [Markdown](http://github.github.com/github-flavored-markdown)</textarea>
<div id="output"></div>
<div id="ack">
DownDoc by <a href="https://twitter.com/themarksteve" target="_blank">@themarksteve</a> /
<a href="https://github.com/marksteve/downdoc" target="_blank">Github</a>
</div>
<div id="loading">
<span>Loading…</span>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="js/lib/spine.js"></script>
<script src="js/lib/marked.js"></script>
<script src="js/lib/app.js"></script>
<script src="//apis.google.com/js/client.js?onload=init"></script>
</body>
</html>