forked from poseidon-framework/poseidon-framework.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (73 loc) · 2.91 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
<!-- index.html -->
<!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">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/fontawesome.css" />
<style>
header {
text-align: left;
}
footer {
font-size: 13px !important;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Poseidon Framework',
loadSidebar: true,
homepage: 'home.md',
subMaxLevel: 3,
alias: {
'/.*/_sidebar.md': '/_sidebar.md'
},
search: 'auto',
search: {
maxAge: 10000, // Expiration time, the default one day
paths: 'auto', // or 'auto'
placeholder: 'Type here to search',
noData: 'No Results!',
// Headline depth, 1 - 6
depth: 6,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
},
plugins: [
function(hook) {
var header = [
'<header>',
'<img alt="GitHub release (latest by date including pre-releases)" src="https://img.shields.io/github/v/release/poseidon-framework/poseidon2-schema?include_prereleases&label=Poseidon%20Version&style=for-the-badge">',
'<a href="https://github.com/poseidon-framework" style="text-decoration:none; color: #007EC6; font-size: 2.4rem; font-family: FontAwesome"> <i class="fas fa-github-square"></i></a>',
'</header>',
'<br>'
].join('');
var footer = [
'<hr/>',
'<footer>',
'©2021 Poseidon is an initiative of the <a href="https://www.eva.mpg.de/archaeogenetics/index.html">Department of Archaeogenetics</a> at the Max Planck Institute for Evolutionary Anthropology in Leipzig.<br>',
'This website was built with <a href="https://github.com/docsifyjs/docsify" target="_blank">docsify</a>.',
'</footer>'
].join('');
hook.afterEach(function(html) {
return header + html + footer;
});
}
]
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-r.min.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<!-- <script src="//unpkg.com/docsify-fontawesome/dist/docsify-fontawesome.min.js"></script> -->
</body>
</html>