-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>evolve</title>
<!-- jQuery -->
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<!-- marked -->
<script src="http://chutsu.github.io/ditto/ver/0.11/marked.js"></script>
<!-- highlight.js -->
<link rel="stylesheet" href="http://chutsu.github.io/ditto/ver/0.11/google_code.css">
<script src="http://chutsu.github.io/ditto/ver/0.11/highlight_8.0.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- ditto -->
<script src="http://chutsu.github.io/ditto/ver/0.11/ditto.js"></script>
<link rel="stylesheet" href="http://chutsu.github.io/ditto/ver/0.11/ditto.css">
</head>
<body>
<!-- essential -->
<div id="sidebar"></div>
<div id="content"></div>
<!-- optional -->
<div id="back_to_top">back to top</div>
<div id="edit">edit</div>
<div id="loading">Loading ...</div>
<div id="error">Opps! ... File not found!</div>
<div id="hide"></div>
<script>
// essential settings
ditto.index = "README.md";
ditto.sidebar_file = "docs/sidebar.md";
ditto.github_username = "chutsu";
ditto.github_repo = "evolve";
// where the docs are actually stored on github - so you can edit
ditto.base_url = "https://github.com/chutsu/evolve/tree/gh-pages";
// run
ditto.run();
</script>
</body>
</html>