forked from lotabout/static-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (85 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<!-- Modify your wiki title here -->
<title>Outernet Documentation</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
––––––––––––––––––––––––––––––––––––––––––––––––––
<link href="//fonts.useso.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
-->
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="http://cdn.bootcss.com/highlight.js/9.1.0/styles/obsidian.min.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="row brand">
<div class="container">
<!-- Modify Your Brand Here -->
<a href=".">Outernet</a>
</div>
</div>
<nav class="row navbar">
<div class="nav-control">
<div class="container">
<div>
<ul class="nav">
<li><button class="nav-button" id="all_pages">All Pages</button></li>
<li><button class="nav-button" id="random_pages">Random Page</button></li>
</ul>
<div id="nav-right">
<input id="search-input" type="text" placeholder="Search">
<button id="toc-button" class="nav-button">ToC</button>
</div>
</div>
</div>
</div>
<div id="toc-wrapper" class="toc-panel hide">
<div id="toc">
<!--table of contents-->
</div>
</div>
<div id="search-result-wrapper" class="nav-result hide">
<div class="container">
<div id="search-result" class="search-result">
<!--search result-->
</div>
</div>
</div>
</nav>
<div id="main" class="row">
<div class="container">
<div id="content" class="">
<!--for the main content-->
</div>
</div>
</div>
<footer id="footer row">
<!-- modify your footer here -->
<div class="container">
© 2017 <a href="https://outernet.is">Outernet Inc</a>
</div>
</footer>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://cdn.bootcss.com/marked/0.3.5/marked.min.js"></script>
<script src="https://cdn.bootcss.com/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/highlight.js/9.1.0/highlight.min.js"></script>
<script src="main.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>