forked from pelagios/pelagios.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartners.html
33 lines (28 loc) · 1.38 KB
/
partners.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
---
layout: page
title: Partners
permalink: /partners/
---
<p>Pelagios is a formal network of equal and independent Partners who coordinate their work together. To become a Partner, all institutions, projects and/or individuals have to do is to agree to contribute to ongoing work that falls under the aegis of one or more of the Network's <a href="https://pelagios.org/activities/">Activities</a>. Partnerships are defined by a Memorandum of Understanding, a non-legally binding document in which the prospective Partner outlines their contribution in consultation with the Network.</p>
<p>To discuss becoming a Partner of the Pelagios Network, simply get in touch with the coordinators of the relevant Activity via our <a href="https://pelagios.org/contact-us/">Contact page</a>.</p>
<hr />
{% assign sorted_partners = site.partners | sort:'title' %}
{% for partner in sorted_partners %}
<div class="partner">
{% if partner.partner-url != nil %}
<a href="http://{{ partner.partner-url }}">
{% if partner.logo != nil %}
<img class="partner-logo" src="{{ partner.logo }}" />
{% endif %}
<h2>{{ partner.title }}</h2>
<p>{{ partner.content }}</p>
</a>
{% else %}
{% if partner.logo != nil %}
<img class="partner-logo" src="{{ partner.logo }}" />
{% endif %}
<h2>{{ partner.title }}</h2>
<p>{{ partner.content }}</p>
{% endif %}
</div>
{% endfor %}