This repository was archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathindex.html
136 lines (127 loc) Β· 4.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta name="description" content="The easiest way to monetize your API." />
<link rel="icon" href="_media/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="_media/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="_assets/vue.css" />
<link rel="stylesheet" href="_assets/styles.css" />
<title>Saasify</title>
<meta property="og:site_name" content="Saasify" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Saasify" />
<meta
property="og:description"
content="The easiest way to monetize your API."
/>
<meta property="og:url" content="https://saasify.sh/" />
<meta
property="og:image"
content="https://blog.saasify.sh/content/images/2020/01/aa_saasify-optim.jpg"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Saasify" />
<meta
name="twitter:description"
content="The easiest way to monetize your API."
/>
<meta name="twitter:url" content="https://saasify.sh/" />
<meta
name="twitter:image"
content="https://blog.saasify.sh/content/images/2020/01/aa_saasify-optim.jpg"
/>
<meta name="twitter:site" content="@saasify_sh" />
<meta property="og:image:width" content="1920" />
<meta property="og:image:height" content="1079" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"publisher": {
"@type": "Organization",
"name": "Saasify",
"logo": "https://blog.saasify.sh/content/images/2020/01/[email protected]"
},
"url": "https://saasify.sh/",
"image": {
"@type": "ImageObject",
"url": "https://blog.saasify.sh/content/images/2020/01/aa_saasify-optim.jpg",
"width": 1920,
"height": 1079
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://saasify.sh/"
},
"description": "The easiest way to monetize your API."
}
</script>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Saasify',
nameLink: '/#/README',
repo: 'saasify-sh/saasify',
homepage: 'readme.md',
notFoundPage: '404.md',
relativePath: true,
// routerMode: 'history',
auto2top: true,
externalLinkTarget: '_self',
search: {
placeholder: 'Search'
},
alias: {
'/.*/_navbar.md': '/_navbar.md'
},
logo: '/_media/logo512w.png',
loadSidebar: true,
subMaxLevel: 2,
maxLevel: 3,
ga: 'UA-148982321-1',
themeColor: '#1890ff',
plugins: [
function(hook, vm) {
hook.beforeEach(function(html) {
let url
if (/githubusercontent\.com/.test(vm.route.file)) {
url = vm.route.file
.replace('raw.githubusercontent.com', 'github.com')
.replace(/\/master/, '/blob/master')
} else {
url =
'https://github.com/saasify-sh/saasify/blob/master/docs/' +
vm.route.file
}
const editHtml = `
<p align="center" class="footer-edit">
<a href="${url}" target="_blank">π Edit this document<\/a>
<\/p>
`
return html + '\n\n' + editHtml
})
}
]
}
</script>
<script src="_assets/docsify.min.js"></script>
<script src="_assets/search.min.js"></script>
<script src="_assets/zoom-image.min.js"></script>
<script src="_assets/docsify-copy-code.min.js"></script>
<script src="_assets/docsify-pagination.min.js"></script>
<script src="_assets/ga.min.js"></script>
<script src="_assets/prism-bash.min.js"></script>
<script src="_assets/prism-javascript.min.js"></script>
<script src="_assets/prism-json.min.js"></script>
<script src="_assets/prism-typescript.min.js"></script>
<script src="_assets/external-script.min.js"></script>
</body>
</html>