-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
41 lines (34 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Wanaprez!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--<link rel="shortcut icon" type="image/png" href="favicon.png" />-->
<link href="https://fonts.googleapis.com/css?family=Raleway|Roboto+Slab" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="./style/tomorrow.css" />
<link type="text/css" rel="stylesheet" href="./style/style.css" />
<script src="./wanaprez.dist.js"></script>
</head>
<body>
<div id="wanaprez-home" style="display: none;">
<h1>Wanaprez!</h1>
<h2>Start from an URL...</h2>
<div id="wanaprez-fromurl">
<input type="text" id="wanaprez-fromurl-url" placeholder="http://example.com/prez.md" />
<button id="wanaprez-fromurl-button">Prez!</button>
</div>
<h2>... or paste some Markdown here</h2>
<div id="wanaprez-fromtext">
<textarea id="wanaprez-fromtext-md" rows="10" cols="60" placeholder="# My Prez
## Some Title
### Slide 1
Lorem ipsum dolor...
"></textarea>
<button id="wanaprez-fromtext-button">Prez!</button>
</div>
<h2>What is Wanaprez?</h2>
Read more... on the <a href="#url=./prez.md" id="wanaprez-demo">Wanaprez Prez</a>!
</div>
</body>
</html>