-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
81 lines (80 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Open Podcast</title>
<link rel="icon" href="_media/favicon.ico" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="description"
content="OpenPodcast supports the open and independent podcast ecosystem and provides detailed analytics for podcast hosts."
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<link rel="stylesheet" href="assets/style.css" type="text/css" />
</head>
<body>
<div id="app"></div>
<script src="//unpkg.com/docsify-edit-on-github@1"></script>
<script>
window.$docsify = {
logo: "/_media/icon.svg",
coverpage: true,
homepage: "home.md",
name: "Open Podcast",
loadSidebar: true,
auto2top: true,
relativePath: true,
darklightTheme: {
siteFont: "Source Sans Pro,Helvetica Neue,Arial,sans-serif",
dark: {
textColor: "#fff",
accent: "#009ddf",
coverBackground: "#0c2236",
borderColor: "#0d2538",
highlightColor: "#EA3A97",
docsify_logo_url: "url(/_media/logo_dark.svg)",
toggleImage:
"url(https://unpkg.com/docsify-darklight-theme@3/icons/sun.svg)",
},
light: {
accent: "#009ddf",
coverBackground: "white",
docsify_logo_url: "url(/_media/logo.svg)",
toggleImage:
"url(https://unpkg.com/docsify-darklight-theme@3/icons/moon.svg)",
},
},
plugins: [
EditOnGithubPlugin.create(
"https://github.com/openpodcast/website/blob/main/",
"https://github.com/openpodcast/website/edit/main/",
"Edit on GitHub"
),
],
search: "auto", // default
// complete configuration parameters
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: "auto",
placeholder: "Type to search docs",
noData: "No Results!",
// Headline depth, 1 - 6
depth: 6,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
},
};
</script>
<script src="//unpkg.com/docsify@4"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-copy-code@2"></script>
<script src="//unpkg.com/prismjs@1/components/prism-yaml.min.js"></script>
<script src="//unpkg.com/prismjs@1/components/prism-rust.min.js"></script>
<script src="//unpkg.com/prismjs@1/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs@1/components/prism-toml.min.js"></script>
<script src="//unpkg.com/docsify-plugin-flexible-alerts@1"></script>
<script src="//unpkg.com/docsify-darklight-theme@3/dist/index.min.js"></script>
</body>
</html>