Skip to content

Latest commit

 

History

History
28 lines (26 loc) · 1.03 KB

editions.md

File metadata and controls

28 lines (26 loc) · 1.03 KB
layout title
editions
Workshop Editions

{% assign editions = site.collections | sort: 'label' | reverse %} {% for edition in editions %} {% if edition.label != "posts" %} {%- assign year = edition.label %} {%- assign year_int = year | to_integer -%} {%- assign links = '' | split: ',' -%} {%- if edition.proceedings %} {%- capture newlink %}[Proceedings]({{ edition.proceedings }}){% endcapture -%} {%- assign links = links | push: newlink -%} {%- endif -%} {%- if edition.website -%} {%- capture newlink %}[Website]({{ edition.website }}){% endcapture -%} {%- assign links = links | push: newlink -%} {%- elsif year_int > 2019 -%} {%- capture newlink %}[Website]({{ '/' | append : year | relative_url }}){% endcapture -%} {%- assign links = links | push: newlink -%} {%- endif -%}

  • {{ year }}: {% if edition.title %}{{ edition.title }}{% else %}{{ site.description }}{% endif %}
    {{ edition.venue }} ({{ edition.dates }})
    {{ links | array_to_sentence_string: " - " }}
    {%- endif -%} {% endfor %}