Skip to content

Commit cdf9bcd

Browse files
committedMar 21, 2020
Initial commit
0 parents  commit cdf9bcd

29 files changed

+7614
-0
lines changed
 

‎.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

‎docs/index.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Welcome to MkDocs
2+
3+
For full documentation visit [mkdocs.org](https://www.mkdocs.org).
4+
5+
## Commands
6+
7+
* `mkdocs new [dir-name]` - Create a new project.
8+
* `mkdocs serve` - Start the live-reloading docs server.
9+
* `mkdocs build` - Build the documentation site.
10+
* `mkdocs -h` - Print help message and exit.
11+
12+
## Project layout
13+
14+
mkdocs.yml # The configuration file.
15+
docs/
16+
index.md # The documentation homepage.
17+
... # Other markdown pages, images and other files.

‎mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
site_name: My Docs

‎site/404.html

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
8+
9+
10+
<link rel="shortcut icon" href="/img/favicon.ico">
11+
<title>My Docs</title>
12+
<link href="/css/bootstrap.min.css" rel="stylesheet">
13+
<link href="/css/font-awesome.min.css" rel="stylesheet">
14+
<link href="/css/base.css" rel="stylesheet">
15+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
16+
17+
<script src="/js/jquery-1.10.2.min.js" defer></script>
18+
<script src="/js/bootstrap.min.js" defer></script>
19+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
20+
<script>hljs.initHighlightingOnLoad();</script>
21+
</head>
22+
23+
<body>
24+
<div class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary">
25+
<div class="container">
26+
<a class="navbar-brand" href="/.">My Docs</a>
27+
28+
<!-- Expanded navigation -->
29+
<div id="navbar-collapse" class="navbar-collapse collapse">
30+
31+
<ul class="nav navbar-nav ml-auto">
32+
<li class="nav-item">
33+
<a href="#" class="nav-link" data-toggle="modal" data-target="#mkdocs_search_modal">
34+
<i class="fa fa-search"></i> Search
35+
</a>
36+
</li>
37+
</ul>
38+
</div>
39+
</div>
40+
</div>
41+
42+
<div class="container">
43+
<div class="row">
44+
45+
<div class="row-fluid">
46+
<div id="main-content" class="span12">
47+
<h1 id="404-page-not-found" style="text-align: center">404</h1>
48+
<p style="text-align: center"><strong>Page not found</strong></p>
49+
</div>
50+
</div>
51+
52+
53+
</div>
54+
</div>
55+
56+
<footer class="col-md-12">
57+
<hr>
58+
<p>Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
59+
</footer>
60+
<script>
61+
var base_url = "/",
62+
shortcuts = {"help": 191, "next": 78, "previous": 80, "search": 83};
63+
</script>
64+
<script src="/js/base.js" defer></script>
65+
<script src="/search/main.js" defer></script>
66+
67+
<div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-hidden="true">
68+
<div class="modal-dialog modal-lg">
69+
<div class="modal-content">
70+
<div class="modal-header">
71+
<h4 class="modal-title" id="searchModalLabel">Search</h4>
72+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
73+
</div>
74+
<div class="modal-body">
75+
<p>
76+
From here you can search these documents. Enter
77+
your search terms below.
78+
</p>
79+
<form>
80+
<div class="form-group">
81+
<input type="text" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here">
82+
</div>
83+
</form>
84+
<div id="mkdocs-search-results"></div>
85+
</div>
86+
<div class="modal-footer">
87+
</div>
88+
</div>
89+
</div>
90+
</div><div class="modal" id="mkdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="keyboardModalLabel" aria-hidden="true">
91+
<div class="modal-dialog">
92+
<div class="modal-content">
93+
<div class="modal-header">
94+
<h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>
95+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
96+
</div>
97+
<div class="modal-body">
98+
<table class="table">
99+
<thead>
100+
<tr>
101+
<th style="width: 20%;">Keys</th>
102+
<th>Action</th>
103+
</tr>
104+
</thead>
105+
<tbody>
106+
<tr>
107+
<td class="help shortcut"><kbd>?</kbd></td>
108+
<td>Open this help</td>
109+
</tr>
110+
<tr>
111+
<td class="next shortcut"><kbd>n</kbd></td>
112+
<td>Next page</td>
113+
</tr>
114+
<tr>
115+
<td class="prev shortcut"><kbd>p</kbd></td>
116+
<td>Previous page</td>
117+
</tr>
118+
<tr>
119+
<td class="search shortcut"><kbd>s</kbd></td>
120+
<td>Search</td>
121+
</tr>
122+
</tbody>
123+
</table>
124+
</div>
125+
<div class="modal-footer">
126+
</div>
127+
</div>
128+
</div>
129+
</div>
130+
131+
</body>
132+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.