forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (55 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React Native Navigation - truly native navigation for iOS and Android</title>
<meta name="description" content="React Native Navigation - truly native navigation for iOS and Android">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
<link rel="shortcut icon" href="_images/favicon.ico" type="image/x-icon">
<link rel="icon" href="_images/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="app">
<img src="https://raw.githubusercontent.com/wix/react-native-navigation/master/logo.png"
alt="react-native-navigation logo">
</div>
</body>
<script>
window.$docsify = {
repo: '',
name: 'React Native Navigation',
search: 'auto',
themeColor: '#21B8F0',
loadSidebar: true,
loadNavbar: true,
maxLevel: 4,
subMaxLevel: 2,
auto2top: true,
ga: 'UA-XXXXX-Y',
plugins: [
function (hook) {
var footer = [
'<hr/>',
'<footer class="Test">',
`<span>Caught a mistake or want to contribute to the documentation? <a href="https://github.com/wix/react-native-navigation/tree/master/docs" target="_blank">Edit documentation on Github!</a>.</span>`,
'</footer>'
].join('');
hook.afterEach(function (html) {
return html + footer;
});
}
]
};
</script>
<script src="//unpkg.com/docsify/lib/docsify.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/ga.js"></script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
</html>