-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathindex.html
67 lines (65 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<title>Example 0</title>
<meta name="copyright" content="Copyright 2013-2014, Small Picture, Inc.">
<script src="../libraries/jquery-1.9.1.min.js"></script>
<link href="../libraries/bootstrap.css" rel="stylesheet">
<script src="../libraries/bootstrap.min.js"></script>
<link rel="stylesheet" href="../libraries/fontAwesome/css/all.css">
<script src="../concordutils.js"></script>
<link rel="stylesheet" href="../concordstyles.css">
<script src="../concord.js"></script>
<style>
body {
background-color: whitesmoke;
}
h1 {
margin-top: 75px;
}
.divOutlinerContainer {
width: 50%;
margin-top: 25px;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
border:1px solid gainsboro;
min-height: 300px;
max-height: 500px;
overflow: auto;
padding: 6px;
background-color: white;
}
</style>
</head>
<body>
<div class="divForkMe">
<a href="http://github.com/scripting/concord"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 1050;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
</div>
<center>
<h1>The Hello World of Outliners</h1>
</center>
<div class="divOutlinerContainer">
<div id="outliner">
</div>
</div>
<center>
<p>You can <a href="http://outlinerhowto.opml.org/">enter and edit outline structures</a>, but that's all.</p>
</center>
<script>
$(document).ready (function () {
$("#outliner").concord ({
"prefs": {
"outlineFont": "Georgia",
"outlineFontSize": 18,
"outlineLineHeight": 24,
"renderMode": false,
"readonly": false,
"typeIcons": appTypeIcons
},
});
opXmlToOutline (initialOpmltext);
});
</script>
</body>
</html>