-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathorganizations.html
24 lines (23 loc) · 1.01 KB
/
organizations.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
---
title: Organizations
layout: default
permalink: /organizations/
---
{% include breadcrumbs.html %}
{% for organization in site.organizations %}
{% assign dataset_count = site.datasets | where:"organization", organization.title | size %}
<div class="media">
<div class="mr-3">
{% if organization.logo and organization.logo != empty %}
<a href="{{ site.baseurl }}{{ organization.url }}" class="organization-thumbnail">
<img class="media-object" src="{{ organization.logo | relative_url }}" alt="{{ organization.title }}">
</a>
{% endif %}
</div>
<div class="media-body">
<h4 class="media-heading"><a href="{{ site.baseurl }}{{ organization.url }}">{{ organization.title }}</a></h4>
<p style="text-align: justify;">{{ organization.description }}</p>
<p><a href="{{ site.baseurl }}/datasets/?organization={{ organization.title | slugify }}"><span class="badge badge-primary badge-pill">{{ dataset_count }}</span> datasets</a></p>
</div>
</div>
{% endfor %}