-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html~
executable file
·92 lines (79 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<title>nafergo's Blender notes</title> <!-- EDIT ME!! -->
<!-- JQUERY -->
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<!-- MARKED -->
<script src="js/marked.js"></script>
<!-- HIGHLIGHT.JS -->
<link rel="stylesheet" href="css/github.css">
<script src="js/highlight.js"></script>
<!-- MATHJAX -->
<script type="text/x-mathjax-config">
jax: ["input/TeX", "output/HTML-CSS"],
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$']],
processRefs: true
},
TeX: {
equationNumbers: {
autoNumber: "all",
formatID: function(id) { return null },
formatURL: function(id) { return null }
}
}
});
</script>
<script type="text/javascript"
src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML">
</script>
<!-- DITTO -->
<link rel="stylesheet" href="css/ditto.css">
<script src="js/ditto.js"></script>
<!-- mine -->
<link rel="stylesheet" href="css/nafergo.css">
<script language="JavaScript">
<!--hide
var password;
var pass1="sss";
password=prompt('Enter Password To View Page',' ');
if (password==pass1)
alert('Correct password, click OK to enter.');
else
{
window.location="http://www.google.com";
}
//-->
</script>
</head>
<body>
<!-- ESSENTIAL -->
<div id="sidebar"></div>
<div id="content"></div>
<div id="hide"></div>
<!-- OPTIONAL -->
<div id="back_to_top">top</div>
<div id="edit">edit</div>
<div id="loading">Loading ...</div>
<div id="error"></div>
<!-- DITTO -->
<script>
$(function($) {
// essential settings
ditto.index = "README.md",
ditto.sidebar_file = "sidebar.md",
// optional settings if you want github search
ditto.github_username = "nafergo"; // <------- EDIT ME!!
ditto.github_repo = "Libre-Pipeline-for-Animation"; // <------- EDIT ME!!
ditto.highlight_code = false; // <------- EDIT ME!!
// where the docs are actually stored on github - so you can edit
ditto.base_url = "https://github.com/nafergo/Libre-Pipeline-for-Animation/edit/gh-pages";
// run
ditto.run();
});
</script>
</body>
</html>