Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 746 Bytes

participants.md

File metadata and controls

35 lines (31 loc) · 746 Bytes
layout title
page
Participants
    {% for p in site.data.participants %}
  1. {{ p.name }} {% if p.affiliation != null %} ({{ p.affiliation }}){% endif %} {% if p.links != null %} {% for item in p.links %} ({{ item[0] }}) {% endfor %} {% endif %}
    {% if p.talk != null %} Talk: {{ p.talk }}{% endif %}
  2. {% endfor %}

{% if site.data.feedback.size > 0 %}

    {% for p in site.data.feedback %}
  • {{ p.name }} {% if p.package != null %} (author of {{ p.package }}){% endif %}
    {% if p.feedback != null %} {{ p.feedback }}{% endif %}
  • {% endfor %}

{% endif %}