Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 2.51 KB

speakers.md

File metadata and controls

62 lines (49 loc) · 2.51 KB
layout title
page
Speakers

We are excited to host a wonderful list of speakers in the Open Science Room. They will be contributing to Panel Discussions and Table Talks. Click on a speaker below to see their bio and talk details.

Emergent sessions are spontaneous in nature, so speaker will not appear in advanced in this page!


{% assign n_rows = site.speakers.size | divided_by:2 %}

{% for row in (0..n_rows) %} {% for col in (0..1) %}
    {% assign idx = row | times:2 | plus:col %}
    {% assign speaker = site.speakers[idx] %}
    {% if speaker.Name %}

        {% assign img_path = nil %}
        {% assign names = speaker.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 %}

        <a style="display:block; color:#05323F" href="{{ site.baseurl }}{{speaker.url}}">
        <aside class="speaker-card {% if speaker.column %} {{ speaker.column }}{% endif %}">
        <header>
            <img src="{{ site.baseurl }}{{ img_path }}" style="height:200px; border-radius:50%;">

            <h3>{{ speaker.Name }}</h3>

            <h6>{{ speaker.Affiliation }}</h6>

            <h4>
            {% if speaker.Twitter %} <a target="_blank" href="https://twitter.com/{{ speaker.Twitter }}"><i class="fa fa-twitter fa-2x" style="position: relative; top: 0px;text-indent:0px;  vertical-align: middle; margin-left:4px; margin-right:4px;"></i></a> {% endif %}
            {% if speaker.Github %} <a target="_blank" href="https://github.com/{{ speaker.Github }}"><i class="fa fa-github fa-2x" style="position: relative; top: 0px; text-indent:0px; vertical-align: middle; margin-left:4px; margin-right:4px; "></i></a>{% endif %}
            {% if speaker.Website %} <a target="_blank" href="{{ speaker.Website }}"><i class="fa fa-external-link-square fa-2x" style="position: relative; top: 0px;text-indent:0px;  vertical-align: middle; margin-left:4px; margin-right:4px;"></i></a>{% endif %}
            </h4>
            <br>
        </header>
        </aside>
        </a>
    {% endif %}
    </td>
{% endfor %}
</tr>

{% endfor %}