-
Notifications
You must be signed in to change notification settings - Fork 1
/
datasets.html
46 lines (43 loc) · 1.78 KB
/
datasets.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
---
layout: page
title: Datasets
permalink: /datasets/
---
<article class="post-content">
<p class="note">This is a list of datasets that use Freesound content, sorted alphabetically.
Do yo have a dataset that uses Freesound and does not appear here? Please <b>send us an email</b> at [email protected]!
</p>
<ul class="post-list">
{% assign sorted_datasets = site.datasets | sort_natural: 'title' %}
{% for dataset in sorted_datasets %}
<li>
<table>
<tr>
<td style="vertical-align: top;{% if dataset.image %} padding-right:15px;{% endif %} max-width:840px;">
<h2 style="margin-bottom:0px;"><a class="post-link" href="{{ dataset.project_url }}">{{ dataset.title }}</a></h2>
<p>{{ dataset.content }}</p>
{% if dataset.authors %}
<p>
<span class="post-meta">Authors:</span><br><span style="font-size:14px"> {{ dataset.authors | join: ', ' }}</span>
</p>
{% endif %}
{% if dataset.institutions %}
<p>
<span class="post-meta">Institutions:</span><br><span style="font-size:14px"> {{ dataset.institutions | join: ', ' }}</span>
</p>
{% endif %}
{% if dataset.url %}
<p>
<span class="post-meta">More information and download:<br><a href="{{ dataset.project_url }}" target="_blank">{{ dataset.project_url }}</a></span>
</p>
{% endif %}
</td>
<td class="thumbnail_cell" style="vertical-align: middle;">
<p><img width="300px" src="/assets/thumbnails/{% if dataset.image %}{{dataset.image}}{%else%}dataset.png{% endif %}" alt="{{ dataset.title }} thumbnail" style="border-radius:3px;"></p>
</td>
</tr>
</table>
</li>
{% endfor %}
</ul>
</article>