Skip to content

Commit

Permalink
add photo CR (#372)
Browse files Browse the repository at this point in the history
* add photo CR

* modify template

* correct CR photo url

correct

* Update _data/maintainers.yml

---------

Co-authored-by: Remi Gau <[email protected]>
  • Loading branch information
christinerogers and Remi-Gau authored Mar 20, 2024
1 parent 434cfee commit bfc209a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions _data/maintainers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
git: "ericearl"
- name: "Christine Rogers"
git: "christinerogers"
picture: https://christinerogers.github.io/bio/headshot_crogers_202010.jpg
- name: "Nell Hardcastle"
git: "nellh"
- name: "Kimberly Ray"
Expand Down
6 changes: 5 additions & 1 deletion _includes/members_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@

<a href="https://github.com/{{ person.git }}">
<img
src="https://github.com/{{ person.git }}.png?size=150"
{% if person.picture %}
src="{{ person.picture }}"
{% else %}
src="https://github.com/{{ person.git }}.png?size=150"
{% endif %}
width="150px;"
alt="{{ person.name }}"
/>
Expand Down

0 comments on commit bfc209a

Please sign in to comment.