-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsoftware.html
60 lines (55 loc) · 2.15 KB
/
software.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
---
layout: default
title: "Software"
permalink: software.html
group: "navigation"
order: 4
---
<div class='section'>
<div class='section-title'>Software tools</div>
<ul id="tools">
{% for tools in site.data.gkno-web-content.tools %}
{% assign tool = tools[0] %}
<div class="section-subtitle">{{ tool }}</div>
<!-- Display authors -->
<div style="display:table">
{% if site.data.gkno-web-content.tools[tool].authors %}
<div class="section-software">Authors:</div>
{% for author in site.data.gkno-web-content.tools[tool].authors %}
<ul style="list-style-type:circle; font-size:18px;"><div style="display:table-cell">{{ author }}</div></ul>
{% endfor %}
{% endif %}
</div>
<!-- Display emails -->
<div style="display:table">
{% if site.data.gkno-web-content.tools[tool].emails %}
<div class="section-software">Contact:</div>
{% for email in site.data.gkno-web-content.tools[tool].emails %}
<ul style="list-style-type:circle; font-size:18px;"><div style="display:table-cell">{{ email }}</div></ul>
{% endfor %}
{% endif %}
</div>
<!-- Display web pages -->
<div style="display:table">
{% if site.data.gkno-web-content.tools[tool].web_pages %}
<div class="section-software">Web pages:</div>
{% for webPage in site.data.gkno-web-content.tools[tool].web_pages %}
<ul style="list-style-type:circle; font-size:18px;"><div style="display:table-cell">
<a href="{{ webPage }}">{{ webPage }}</a>
</div></ul>
{% endfor %}
{% endif %}
</div>
<!-- Display papers -->
<div style="display:table">
{% if site.data.gkno-web-content.tools[tool].web_pages %}
<div class="section-software">Papers:</div>
{% for paper in site.data.gkno-web-content.tools[tool].papers %}
<ul style="list-style-type:circle; font-size:18px; text-align:left;"><li style="display:table-cell">{{ paper }}</li></ul>
{% endfor %}
{% endif %}
</div>
<hr>
{% endfor %}
</ul>
</div>