Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 704 Bytes

collaborations.md

File metadata and controls

22 lines (19 loc) · 704 Bytes
title layout permalink
Collaborations
page
/collaborations/

{% assign currentCollaborations = site.data.collaborations | where_exp: "collaboration", "collaboration.endYear == nil" | sort: "name" %} {% assign formerCollaborations = site.data.collaborations | where_exp: "collaboration", "collaboration.endYear != nil" | sort: "name" %}

{% if currentCollaborations.size > 0 %}

Active Collaborations

{% include list-collaborations.html source=currentCollaborations style="card" %}
{% endif %}

{% if formerCollaborations.size > 0 %}

Past Collaborations

{% include list-collaborations.html source=formerCollaborations style="card" %}
{% endif %}