-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9fc0ea
commit e1df8c7
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
--- | ||
layout: page | ||
title: Members | ||
permalink: /members/ | ||
--- | ||
|
||
Please add yourself to this page! Either [sign up here](../member_registration.html), or fork the repository, edit `_data/members.yml` and submit a pull request. | ||
|
||
## Steering Committee | ||
|
||
- Umar Ahmad, Bauchi State University | ||
|
||
|
||
## Current Members | ||
|
||
<table> | ||
{% for member in site.data.members %} | ||
|
||
{% capture modulo %}{{ forloop.index | modulo: 3 }}{% endcapture %} | ||
{% if modulo == '1' %} | ||
<tr> | ||
{% endif %} | ||
<td align="center"> | ||
{% if member.github %} | ||
{% avatar user=member.github size=100 %}<br> | ||
{% else %} | ||
<img src="/assets/no-github.png"><br> | ||
{% endif %} | ||
<strong>{{ member.name }}</strong> | ||
<p class="post-meta">{{ member.interests }}</p> | ||
{{ member.institute }}<br> | ||
{{ member.email }}<br> | ||
<a href="{{member.website}}">web</a> | <a href="https://twitter.com/{{member.twitter}}">twitter</a> | ||
</td> | ||
{% if modulo == '0' or forloop.last %} | ||
</tr> | ||
{% endif %} | ||
{% endfor %} | ||
</table> | ||
|
||
<!--- | ||
To Add yourself to the members table: | ||
in the data directory you need to add yourself to the members.yml file: | ||
- github: markdunning | ||
name: Mark Dunning | ||
institute: Sheffield University Bioinformatics Core | ||
email: [email protected] | ||
--> | ||
|
||
## Alumini | ||
|
||
<table> | ||
{% for member in site.data.alumni %} | ||
{% capture modulo %}{{ forloop.index | modulo: 3 }}{% endcapture %} | ||
{% if modulo == '1' %} | ||
<tr> | ||
{% endif %} | ||
<td align="center"> | ||
{% if member.github %} | ||
{% avatar user=member.github size=100 %}<br> | ||
{% else %} | ||
<img src="/assets/no-github.png"><br> | ||
{% endif %} | ||
<strong>{{ member.name }}</strong><br> | ||
{{ member.institute }}<br> | ||
{{ member.email }}<br> | ||
<a href="{{member.website}}">{{member.website}}</a> | ||
</td> | ||
{% if modulo == '0' or forloop.last %} | ||
</tr> | ||
{% endif %} | ||
{% endfor %} | ||
</table> |