Error in user YAML: (<unknown>): did not find expected ',' or '}' while parsing a flow mapping at line 6 column 5
---
layout: page
title: Participants
participants:
- {name: Max Horn, affiliation: University of Kaiserslautern-Landau, Germany}
- {name: Iryna Raievska, affiliation: University of Warsaw, Warsaw, Poland; Institute of Mathematics of National Academy of Sciences of Ukraine, Kyiv, Ukraine
- {name: Maryna Raievska, affiliation: University of Warsaw, Warsaw, Poland; Institute of Mathematics of National Academy of Sciences of Ukraine, Kyiv, Ukraine
---
- {% assign participants = page.participants | sort: "name" %}
{% for p in participants %}
-
{{ 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 %}
{% 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 %}