---
layout: base
---
{% include header.html type="speaker" %}
{% assign img_path = nil %}
{% assign names = page.Name | downcase | split: " " %}
{% assign img_path = site.baseurl | append: "/img/person_default.jpg" %}
{% for file in site.static_files %}
{% if file.path contains names.first and file.path contains names[1] %}
{% assign img_path = file.path %}
{% endif %}
{% endfor %}
{{ page.Name }} {% if page.Pronouns %} ({{ page.Pronouns }}) {% endif %}
{{page.Job}}, {{ page.Affiliation }}
{{ page.ShortBio | markdownify }}
{% if page.Twitter %} {% endif %}
{% if page.Github %} {% endif %}
{% if page.Website %} {% endif %}
|
 |
{% assign talks = site.data.accepted_talks | where: "Name", page.Name %}
{% if talks.size > 0 %}
Talks
{% for talk in talks %}
{{ talk.TalkTitle }}
Theme: {{talk.Theme}}
Format: {{talk.TalkFormat}}
{% endfor %}
|
{% endif %}