-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresearch.html
88 lines (78 loc) · 2.64 KB
/
research.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
---
layout: default
---
<div class="section">
<div class="container">
<div class="tile is-ancestor">
<!-- here go the tiles -->
{% assign project = site.research | where: 'title', 'Bioinformatics'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-warning is-child container">
{% include research.html %}
</article>
</div>
{% assign project = site.research | where: 'title', 'Plasma proteomics'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-info is-child container">
{% include research.html %}
</article>
</div>
{% assign project = site.research | where: 'title', 'Lung cancer'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-primary is-child container">
{% include research.html %}
</article>
</div>
</div>
<div class="tile is-ancestor">
{% assign project = site.research | where: 'title', 'Breast cancer'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-success is-child container">
{% include research.html %}
</article>
</div>
{% assign project = site.research | where: 'title', 'Proteomics methods' |first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-child container">
{% include research.html %}
</article>
</div>
{% assign project = site.research | where: 'title', 'Childhood cancer'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-child is-warning container">
{% include research.html %}
</article>
</div>
</div>
<div class="tile is-ancestor">
{% assign project = site.research | where: 'title', 'Molecular tumor board'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-info is-child container">
{% include research.html %}
</article>
</div>
{% assign project = site.research | where: 'title', 'Your project?'|first %}
{% include researchmodal.html %}
<div class="tile is-4 is-parent">
<article class="tile notification is-child container">
{% include research.html %}
</article>
</div>
</div>
</div>
</div>
<script>
function showModal(name) {
document.getElementById(name).classList.add('is-active');
}
function notShowModal(name) {
document.getElementById(name).classList.remove('is-active');
}
</script>