-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
31 lines (28 loc) · 998 Bytes
/
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
---
layout: default
---
<header class="masthead">
<h1 class="masthead-title">
<a href="{{ site.baseurl }}/">{{ site.name }}</a>
</h1>
<nav class="masthead-nav">
{% for nav in site.nav %}
<a href="{{ nav.href }}">{{ nav.name }}</a>
{% endfor %}
</nav>
</header>
<p>The Top 10 FAIR Data & Software Things are brief guides (stand alone, self paced training materials), called "Things", that can be used by the research community to understand how they can make their research (data and software) more <a href="https://www.go-fair.org/fair-principles/">FAIR (Findable, Accessible, Interoperable and Reusable)</a>. Each discipline/topic has its own specific list:
<div class="content list">
{% if site.posts.size == 0 %}
<h2>No post found</h2>
{% else %}
{% for post in site.posts %}
<div class="list-item">
<h2 class="list-post-title">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h2>
</br>
</div>
{% endfor %}
{% endif %}
</div>