Skip to content

Latest commit

 

History

History
129 lines (111 loc) · 6.23 KB

volunteers.md

File metadata and controls

129 lines (111 loc) · 6.23 KB
layout title
page
Volunteers

The core OSR team were elected into these roles in July 2019, as part of the OHBM Open Science Special Interest Group (OS-SIG).


Cassandra Gould van Praag

OSR Co-chair

Wellcome Centre for Integrative Neuroimaging, University of Oxford


Stephan Heunis

OSR Co-chair

Eindhoven University of Technology, The Netherlands


Camille Maumet

OS-SIG Chair

Inria, Univ Rennes, CNRS, Inserm


Together with the OSR team, the wonderfully talented and hard-working volunteers below made significant contributions to the Open Science Room. We have greatly enjoyed working with them, and proud to have them in our community. Have a look at their contact links and bios below, and give them a virtual high-five in the OSR!


{% assign volunteers = site.volunteers %}

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

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

        {% assign img_path = nil %}
        {% assign names = person.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 }}{{person.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>{{ person.Name }}</h3>

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

            <h4>
            {% if person.Twitter %} <a target="_blank" href="https://twitter.com/{{ person.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 person.Github %} <a target="_blank" href="https://github.com/{{ person.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 person.Website %} <a target="_blank" href="{{ person.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 %}