-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdefault.html
More file actions
73 lines (67 loc) · 3.14 KB
/
default.html
File metadata and controls
73 lines (67 loc) · 3.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ 'assets/css/style.css' | relative_url }}">
</head>
<body>
<div class="header">
<a href="{{ '/' | absolute_url }}" class="header-logo">
<img src="{{ 'assets/images/coderdata_logo1.png' | absolute_url }}" alt="Logo" class="header-logo">
</a>
<div class="title-and-description">
<a href="{{ '/' | absolute_url }}" class="title">
<svg width="100%" height="60">
<defs>
<linearGradient id="gradient-title" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:green; stop-opacity:1" />
<stop offset="100%" style="stop-color:white; stop-opacity:1" />
</linearGradient>
</defs>
<text fill="url(#gradient-title)" x="10" y="40" font-size="42" font-weight="bold">{{ page.title }}</text>
</svg>
</a>
<span class="description">Cancer Omics and Drug Experiment Response Data (`coderdata`) Python Package</span>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<div class="navbar">
<div><a href="{{ '/pages/usage' | absolute_url }}">Usage</a></div>
<div class="dropdown">
<a href="#datasets">Datasets</a>
<div class="dropdown-content">
<a href="{{ '/datasets/broad_sanger' | absolute_url }}">Broad Sanger</a>
<a href="{{ '/datasets/cptac' | absolute_url }}">CPTAC</a>
<a href="{{ '/datasets/hcmi' | absolute_url }}">HCMI</a>
<a href="{{ '/datasets/beataml' | absolute_url }}">BeatAML</a>
<a href="{{ '/datasets/mpnst' | absolute_url }}">MPNST</a>
</div>
</div>
<div class="dropdown">
<a href="#resources">Resources</a>
<div class="dropdown-content">
<a href="https://github.com/PNNL-CompBio/coderdata/" target="_blank">GitHub</a>
<a href="{{ site.data.figshare_latest.article_link }}" target="_blank">FigShare</a>
<a href="https://pypi.org/project/coderdata/" target="_blank">PyPI</a>
<a href="{{ '/pages/add_code_guide' | absolute_url }}">Contribution Guide</a>
<a href="{{ '/assets/html/Keras_Deep_Learning_BeatAML.html' | absolute_url }}"> Deep Learning Tutorial</a>
<a href="{{ '/assets/html/Drug_Response_Exploration.html' | absolute_url }}"> Drug Response Tutorial</a>
<a href="{{ '/assets/html/Data_Exploration_UMAP_Tutorial.html' | absolute_url }}"> Data Exploration Tutorial</a>
</div>
</div>
<div><a href="{{ '/pages/contribution' | absolute_url }}">Contribute</a></div>
</div>
</div>
{{ content }}
<script>
// JavaScript for toggling the navbar
document.querySelector('.hamburger').addEventListener('click', function() {
document.querySelector('.navbar').classList.toggle('open');
});
</script>
</body>
</html>