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 %}
{% include list-collaborations.html source=currentCollaborations style="card" %}
{% endif %}
{% if formerCollaborations.size > 0 %}
{% include list-collaborations.html source=formerCollaborations style="card" %}
{% endif %}