forked from okestonia/opendata.riik.ee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
organizations.html
32 lines (30 loc) · 1.19 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
25
26
27
28
29
30
31
32
---
title: Teabevaldajad
layout: default
permalink: /orgs/
ref: publishers
lang: et
---
{% include breadcrumbs.html %}
<h1>Teabevaldajad</h1>
<br>
{% assign organizationsort = site.organizations | where: "lang", page.lang %}
{% for organization in organizationsort %}
{% assign dataset_count = site.datasets | where:"organization", organization.title | size %}
{% if dataset_count > 0 %}
<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="/img/organizations/{{ organization.logo }}" alt="{{ organization.title }}">
</a>
{% endif %}
</div>
<div class="media-body">
<h3 class="media-heading"><a href="{{ site.baseurl }}{{ organization.url }}">{{ organization.title }}</a></h3>
<p style="text-align: justify;">{{ organization.description }}</p>
<p><a href="{{ site.baseurl }}/andmehulgad/?organization={{ organization.title | slugify }}"><span class="badge badge-primary badge-pill">{{ dataset_count }}</span> andmehulgad</a></p>
{% endif %}
</div>
</div>
{% endfor %}