-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (62 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bioinformatics Training</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="google-site-verification" content="NjzxMI2Lv5Zj6KPKNUWrxEPG50bU1uwgA2cJ_bK7IRc" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;700&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/src/scss/themes/defaults/_plugin-pagination.css">
<link rel="stylesheet" href="theme.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '',
repo: '',
loadSidebar: true,
coverpage: 'coverpage.md',
onlyCover: true,
themeable: {
readyTransition: true,
responsiveTables: true
}
}
</script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://unpkg.com/docsify-themeable"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script type="text/javascript" src="/zxtm/piwik2.js"></script>
<script>
window.addEventListener('hashchange', function() {
_paq.push(['setCustomUrl', '/F2/']);
_paq.push(['setDocumentTitle', 'F2 Training']);
_paq.push(['trackPageView']);
});
</script>
<link rel='stylesheet' id='simple-cookie-css' href="https://www.sanger.ac.uk/wp-content/plugins/wordpress-simple-cookie-plugin/cookies-min.css" type='text/css' media='' />
<meta name="simplecookie_policy" content="/policies/cookies/" />
<script type='text/javascript' src='https://www.sanger.ac.uk/wp-content/plugins/wordpress-simple-cookie-plugin/cookies-gcc.js' id='simple-cookie-js'></script>
</body>
<style>
.videoWrapper {
position: relative;
padding-bottom: 56.25%;
/* 16:9 */
height: 0;
overflow: hidden;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</html>