forked from jdunic/marine-dataset-catalogue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (69 loc) · 2.42 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
---
layout: base
---
<div class="jumbotron">
<h1>Welcome to the Ecological Dataset Catalogue</h1>
<p>This is a catalogue of open datasets for marine and terrestrial environments.</p>
<p><a href="{{"/database"| prepend: site.baseurl }}" class="btn btn-primary btn-lg" role="button">View the database</a></p>
</div>
<div class="page-header">
<h2>What's this all about?</h2>
</div>
<div class="row">
<div class="col-md-12">
<p>
The Ecological Dataset Catalogue is an <strong>open source</strong> database
of open data projects.
</p>
</div>
<div class="col-md-6">
<h3>Submit a Dataset</h3>
<p>
The Catalogue is only as good as the size and quality of the dataset.
This means we need submissions of datasets to consider, and for researchers
to complete our survey to make the dataset better.
</p>
<a href="https://goo.gl/forms/UJmFBuyGHQ3XaS5C3" class="btn btn-default">Submit a Dataset »</a>
</div>
<div class="col-md-6">
<h3>Complete our Survey</h3>
<p>
The Catalogue is only as good as the size and quality of the dataset.
This means we need submissions of datasets to consider, and for researchers
to complete our survey to make the dataset better.
</p>
<a href="https://goo.gl/forms/h2oUBYjTIJNEtDcx1" class="btn btn-default">Complete the Survey »</a>
</div>
</div>
<div class="page-header">
<h2>Why did we create it?</h2>
</div>
<div class="row">
<div class="col-md-12">
<p>
While scientists have been pushing for open data for a number of years,
a lack of a clean interface to find datasets severely impacts how many
researchers end up utilizing open data.
</p>
</div>
</div>
<div class="page-header">
<h2>Recent Datasets Added</h2>
</div>
{% for hash in site.data %}
{% assign dataset = hash[1] %}
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<a href="/view/#">{{ dataset.name | escape }}</a>
</h3>
</div>
<div class="panel-body">
Panel content
</div>
</div>
</div>
</div>
{% endfor %}