forked from JoseTomasTocino/mindmapit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MindMapIt</title>
<link rel="stylesheet" href="dist/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrapper">
<header id="mainHeader">
<strong>MindMapIt</strong> - Developed by <a href="http://josetomastocino.com">José Tomás Tocino</a> -
<a href="https://github.com/JoseTomasTocino/MindMapIt">Source at GitHub</a>
</header>
<div class="info">
Write the source for your mind map in the text area on the left side. The result will appear
on the right side. Right click the generated mind map to download it as an image.<br>
<strong>DISCLAIMER:</strong> no data gets sent from this website to any server, all the processing happens on the browser.
</div>
<div class="content">
<div id="source">
<textarea class="source-textarea" v-model="sourceCode" debounce="100">
</textarea>
</div>
<div id="canvas_wrapper">
<canvas id="canvas"></canvas>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.13/vue.js"></script>
<script src="dist/app.js"></script>
</body>
</html>