-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·99 lines (86 loc) · 3.29 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
93
94
95
96
97
98
99
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>Ok Documentation</title>
<!-- Flatdoc -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src='//cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/legacy.js'></script>
<script src='//cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/flatdoc.js'></script>
<!-- Flatdoc theme -->
<link href='//cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/style.css' rel='stylesheet'>
<script src='//cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/script.js'></script>
<!-- Meta -->
<meta content="Ok" property="og:title">
<meta content="Ok makes programming projects better." name="description">
<!-- Initializer -->
<script>
Flatdoc.run({
fetcher: Flatdoc.file([ 'ok.md' ])
});
$(document).on('flatdoc:ready', function() {
// remove some section
});
</script>
<style>
.button {
padding-bottom: 3px !important;
}
.content blockquote :first-child {
padding-top: 3px !important;
}
@media (min-width: 1180px) {
blockquote {
height: 0px;
}
pre {
height: 0px;
}
}
@media (max-width: 768px) {
.hide {
display: none;
}
}
</style>
</head>
<body role='flatdoc'>
<div class='header'>
<div class='left'>
<h1> <img src="logo.png" height="20px" /> </h1>
<ul>
<li><a href='https://github.com/Cal-CS-61A-Staff/ok'>View on GitHub</a></li>
<li><a href='index.html'>Documention Home</a></li>
<li><a href='https://github.com/Cal-CS-61A-Staff/ok/issues'>Issues</a></li>
</ul>
</div>
<div class='right hide'>
<!-- GitHub buttons: see http://ghbtns.com -->
<iframe src="https://ghbtns.com/github-btn.html?user=Cal-CS-61A-Staff&repo=ok&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=Cal-CS-61A-Staff&repo=ok&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
</div>
</div>
<div class='content-root'>
<div class='menubar'>
<div class='section'>
<a class='big button' href='https://okpy.org' target='_blank'>
okpy.org
</a>
</div>
<div class='menu section' role='flatdoc-menu'></div>
<div class='bottom section'>
<iframe src="https://ghbtns.com/github-btn.html?user=Cal-CS-61A-Staff&repo=ok&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<br>
<iframe src="https://ghbtns.com/github-btn.html?user=okpy&type=follow&count=true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<br>
<iframe src="https://ghbtns.com/github-btn.html?user=Cal-CS-61A-Staff&type=follow&count=true" frameborder="0" scrolling="0" width="170" height="20"></iframe>
<br>
<a href='https://github.com/okpy/documentation' target='_blank'>Documentation Repository</a>
</div>
</div>
<div role='flatdoc-content' class='content'></div>
</div>
</body>
</html>