-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
70 lines (61 loc) · 2.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Proton</title>
<link rel="stylesheet" href="style/bootstrap.min.css">
<link rel="stylesheet" href="style/hack.min.css">
<!-- <link rel="stylesheet" type="text/css" href="http://jaxedit.com/note/typejax/typejax.css" /> -->
<link rel="stylesheet" href="depend/default.min.css">
<link rel="stylesheet" href="depend/style.css">
<!-- Latest compiled and minified JavaScript -->
<script src="depend/jquery.js"></script>
<script src="depend/marked.js"></script>
<script src="depend/highlight.min.js"></script>
<!-- <script type="text/javascript" src="http://jaxedit.com/note/typejax/typejax.js"></script> -->
<!-- <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> -->
<!-- <script type="text/x-mathjax-config"> -->
<!-- MathJax.Hub.Config({ skipStartupTypeset: true }); -->
<!-- </script> -->
<script>
window.$ = window.jQuery = require('./depend/jquery.js');
</script>
<style type="text/css" media="screen">
html {
overflow-x: hidden;
}
#editor {
position: fixed;
height: 100%;
width: 50%;
padding-top: 20px;
}
.preview-text img {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<nav style="margin-top: 15px;" class="navbar navbar-fixed-top">
<div class="container-fluid">
<div id="error" style="display: none;">
</div>
</div>
</nav>
<div class="row">
<div class="col-lg-6">
<div id="editor"></div>
</div>
<div style="margin-top: 10px;" class="col-lg-6">
<div class="container">
<div class="row preview-text" id="previewText"></div>
</div>
</div>
</div>
<script src="depend/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="depend/src-noconflict/ext-language_tools.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>