Skip to content

Commit

Permalink
Merge pull request #1 from OluwaninsolaAO/main
Browse files Browse the repository at this point in the history
Updates Gemfile plugin list and creates members data file
  • Loading branch information
babasaraki authored Jun 5, 2024
2 parents a41e515 + 88783b0 commit a6248b3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 34 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ source 'https://rubygems.org'

group :jekyll_plugins do
gem 'webrick'
gem "jekyll-avatar"
end

gem "kramdown-parser-gfm"
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ plugins:
target-blank:
rel: nofollow

header_page_refs: ['now', 'about', 'contact']
header_page_refs: ['about', 'contact', 'members']
4 changes: 1 addition & 3 deletions members.yml → _data/members.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@
email: [email protected]
website: https://africacdc.org/institutes/ipg/
twitter: babasaraky
interests: Cancer, RNA-Seq, WGS, WES, Microarrays, AI/Machine learning,


interests: Cancer, RNA-Seq, WGS, WES, Microarrays, AI/Machine learning,
33 changes: 3 additions & 30 deletions members.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
layout: page
title: Members
permalink: /members/
permalink: /members.html
ref: members
order: 4
---

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.
Expand All @@ -10,12 +12,10 @@ Please add yourself to this page! Either [sign up here](../member_registration.h

- 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>
Expand Down Expand Up @@ -46,31 +46,4 @@ in the data directory you need to add yourself to the members.yml file:
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>

0 comments on commit a6248b3

Please sign in to comment.