Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.19 KB

participants.md

File metadata and controls

42 lines (35 loc) · 1.19 KB
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 %}
  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 %}