-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
174 lines (92 loc) · 3.16 KB
/
search.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!--
This Basic theme serves as an example for how to create other
themes by demonstrating the features with minimal HTML and CSS.
Comments like this will be through the code to explain briefly
what each feature is and point you to the MkDocs documentation
to find out more.
-->
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<!--
The page_title contains the title for a page as shown in the navigation.
Site name contains the name as defined in the mkdocs.yml
-->
<title>کاوه نگار</title>
<!--
Support custom favicon support.
http://www.mkdocs.org/user-guide/configuration/#site_favicon
-->
<link rel="shortcut icon" href="./img/favicon.ico">
<!--
You can include external assets of course, but be aware that it means the
documentation may not work well offline.
-->
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="./css/theme.css">
<!--
extra_ess contains paths to CSS files in the users
documentation directory or a list of CSS files defined in
their mkdocs.yml.
http://www.mkdocs.org/user-guide/configuration/#extra_css
-->
<link rel="stylesheet" href="./css/darkula.css">
<script src="./js/highlight.pack.js"></script>
<!--
Include Google Analytics tracking code.
http://www.mkdocs.org/user-guide/configuration/#google_analytics
-->
<script>var base_url = '.';</script>
<script data-main="./mkdocs/js/search.js" src="./mkdocs/js/require.js"></script>
</head>
<body>
<div class="sidebar left">
<ul>
<li >
<a href=".">Home</a>
</li>
</ul>
</div>
<div class="body rel right">
<header>
<div class="right">
<h1>کاوه نگار</h1>
</div>
<div role="search" class="left">
<form action="./search.html" class="rel" method="get">
<input type="text" name="q" placeholder="جستجو" />
<input type="submit" class="abs search-submit" value="" />
</form>
</div>
</header>
<main class="rel oh">
<div class="right content">
<h1 id="search">نتایج جستجو</h1>
<form id="content_search" action="search.html">
<span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span>
<input name="q" id="mkdocs-search-query" type="text" class="search-query" placeholder="جستجو" autocomplete="off">
</form>
<div id="mkdocs-search-results">
متاسفانه صفحه مورد نظر پیدا نشد.
</div>
</div>
</main>
<footer class="oh">
<a class="left" href="https://github.com/kavenegar/mkdocs-jinks">دسترسی به کد اصلی روی Github</a>
<a class="right" href="http://www.mkdocs.org">ساخته شده توسط: MkDocs.</a>
</footer>
</div>
<!--
To include static assets from our theme, just add
. beforehand which will be the relative path to
the root of the documentation.
-->
<script src="./js/theme.js"></script>
<!--
extra_javascript contains paths to JavaScript files in the
users documentation directory or a list of JavaScript files
defined in their mkdocs.yml.
http://www.mkdocs.org/user-guide/configuration/#extra_javascript
-->
</body>
</html>