forked from projectpages/project-pages
-
Notifications
You must be signed in to change notification settings - Fork 5
/
members.html
36 lines (27 loc) · 1.03 KB
/
members.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: page
title: "Members"
description: "A selection of the researchers involved in the SE community in Montreal"
---
<hr>
{% assign sorted = site.data.members | sort: 'name' %}
{% for member in sorted %}
{% if member.visible == true %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px; float:left; width:150px !important">
<h1>{{ member.name }}</h1>
<h2>{{ member.university }}</h2>
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><img src="{{ "/img/icons/github-icon.png" | prepend: site.baseurl }}" style="height:20px">Github</a></span>
{% endif %}
{% if member.url %}
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Website"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
</br>
{% if member.keywords %}
<p class="text-justify"> Interests:
{{ member.keywords }}
</p>
{% endif %}
<hr>
{% endif %}
{% endfor %}