-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
176 lines (166 loc) · 6.42 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
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
175
176
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<title>ThisVsThat</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CZ9Q3GV67H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CZ9Q3GV67H');
</script>
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/vue.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/themes/dark.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/style.min.css" type="text/css"> -->
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar-folder.min.css" />
<link rel="stylesheet" href="assets/styles.css" />
<link rel="icon" href="_media/logo.png" type="image/png">
<style>
:root {
--docsifytabs-border-color: #ededed;
--docsifytabs-tab-highlight-color: #09c372;
}
nav.app-nav li ul {
min-width: 100px;
}
</style>
</head>
<body>
<noscript>This page requires JavaScript to work, please enable it or just read it on <a href="https://github.com/Garinmckayl/thisvsthat">Here</a>.
</noscript>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: 'ThisVsThat.tech',
logo: 'assets/images/logo.png',
repo: 'Garinmckayl/thisvsthat',
search: ['/'],
coverpage: true,
onlyCover: true,
auto2top: true,
loadSidebar: true,
autoHeader: false,
subMaxLevel: 3,
maxLevel: 4,
loadNavbar: true,
executeScript: true,
tabs: {
persist : true, // default
sync : false, // default
theme : 'classic', // default
tabComments: true, // default
tabHeadings: true
}, // default
share: {
reddit: true,
linkedin: true,
facebook: true,
twitter: true,
whatsapp: true,
telegram: true,
options: {
color: '#42b983'
}
},
pagination: {
crossChapter: true,
},
plugins: [
function(hook) {
var footer = [
'<footer style="text-align: center;margin-top: 50px;">',
'<span> Made with <svg xmlns="http://www.w3.org/2000/svg" width="24" height="15" viewBox="0 0 24 24" fill="red" stroke="red" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg> by <a href="https://www.twitter.com/zealshama/" target="_blank">@zealshama</a> © 2020 </span>',
'</footer>'
].join('');
hook.afterEach(function(html) {
return html + footer;
});
}
],
darklightTheme: {
// siteFont : 'PT Sans | Source Sans Pro',
// defaultTheme : 'light | dark',
// codeFontFamily : 'Roboto Mono, Monaco, courier, monospace',
dark: {
// accent: '#42b983',
// toogleBackground : '#ffffff',
// background: '#091a28',
textColor: '#98b1a7',
// codeTextColor : '#ffffff',
// codeBackgroudColor : '#0e2233',
// borderColor : '#0d2538',
// blockQuoteColour : '#858585',
// highlightColor : '#d22778',
// sidebarSublink : '#b4b4b4',
// codeTypeColor : '#ffffff',
coverBackground : '#091a28'
// toogleImage : 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/sun.svg)'
},
light: {
accent: '#09c372',
// toogleBackground : '#091a28',
// background: '#ffffff',
textColor: '#8b96a0',
// codeTextColor : '#525252',
// codeBackgroudColor : '#f8f8f8',
// borderColor : 'rgba(0, 0, 0, 0.07)',
// blockQuoteColor : '#858585',
// highlightColor : '#d22778',
// sidebarSublink : '#b4b4b4',
// codeTypeColor : '#091a28',
coverBackground : '#091a28'
// toogleImage : 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/moon.svg)'
}
},
plugins: [
function(hook) {
var footer = [
'<hr/>',
'<footer>',
'<span><a href="https://twitter.com/zealshama">ZeAlshama</a> ©2020 - present.</span>',
'</footer>'
].join('');
hook.afterEach(function(html) {
return html + footer;
});
},
function(hook, vm) {
hook.beforeEach(function(html) {
var url =
'https://github.com/Garinmckayl/thisvsthat/tree/master/' +
vm.route.file;
var editHtml = '[📝 Edit this Page](' + url + ')\n';
return (
editHtml +
html +
'\n----\n' +
'Last modified {docsify-updated} ' +
editHtml
);
});
}
]
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- docsify-tabs (latest v1.x.x) -->
<script src="//cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<script src="//unpkg.com/docsify-share/build/index.min.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/external-script.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" type="text/javascript"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
</body>
</html>