-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (100 loc) · 3.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
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
<!doctype html>
<html>
<head>
<title>TGX overview</title>
<link rel="stylesheet" href="css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="text/javascript" src="./js/toggletext.js"></script>
</head>
<header>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-12rand" href="index.html">
<img
src="./pages/pics/tgxLogo.png"
class="d-inline-block"
height="60"
width="240"
alt=""
/>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<li class="nav-item active">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a
class="nav-link"
aria-current="page"
href="./pages/software.html"
>Software</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./pages/datasets.html">Datasets</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pages/research.html">Research</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pages/guide.html">Guide</a>
</li>
</div>
</div>
</div>
</nav>
</header>
<body>
<div class="container" id="bodyContainer">
<div class="col">
<p>
Welcome to the overview repository of the
<a
href="https://cris.maastrichtuniversity.nl/en/organisations/translational-genomics"
>Translational Genomics department</a
>
of Maastricht University.
</p>
<p>
Do you want to add your software, dataset or research archive to this
site? Please read the <a href="./pages/guide.html">guide</a>.
</p>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
<div id="myFooter" class="footer">
<p>
Something wrong on/with the page? Create an issue on
<a href="https://github.com/youphendriks/TGX-overview">github</a> or send
me an e-mail at
<a href="mailto:youp_hendriks@hotmail.com">youp_hendriks@hotmail.com</a>
</p>
</div>
</html>