Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 834 Bytes

invited_speakers_alphabetical.md

File metadata and controls

31 lines (27 loc) · 834 Bytes
layout title
default
All time invited speakers (alphabetical)

{{ page.title }}

{% for conf in site.confs %} {% if conf.invited_speakers %} {% for speaker in conf.invited_speakers %} {% assign last = speaker.name | split: ' ' | last %} {% capture speaker_string %} {{last}}|{{speaker.name}}, {{speaker.affiliation}}: {% include fpsac.html conf=conf %} {% endcapture %} {% if speakers %} {% assign speakers = speakers | append: '||' | append: speaker_string %} {% else %} {% assign speakers = speaker_string %} {% endif %} {% endfor %} {% endif %} {% endfor %}

{% assign speakers = speakers | split: '||' | sort %}

    {% for speaker in speakers %} {% assign foo = speaker | split: '|' %}
  • {{ foo[1] }}
  • {% endfor %}