forked from okestonia/opendata.riik.ee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
organizations.html
33 lines (29 loc) · 1.11 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
33
---
title: Teabevaldajad
layout: default
permalink: /teabevaldajad/
ref: publishers
lang: et
---
{% include breadcrumbs.html %}
<h1>Teabevaldajad</h1>
<br>
{% for organization in site.organizations %}
{% assign dataset_count = site.datasets | where:"organization", organization.title | size %}
{% if dataset_count > 0 %}
<div class="media">
<div class="media-left">
{% 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">{{ dataset_count }}</span> andmehulgad</a></p>
{% endif %}
</div>
</div>
{% endfor %}