Skip to content

Commit

Permalink
added a contributors page
Browse files Browse the repository at this point in the history
  • Loading branch information
Issa Hanou committed Jul 3, 2024
1 parent c5741e0 commit e888ff9
Show file tree
Hide file tree
Showing 28 changed files with 108 additions and 1 deletion.
29 changes: 29 additions & 0 deletions _data/contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
core_team:
- name: Sebastijan Dumancic
img: sebastijan.jpg
url: https://sebdumancic.github.io/
bio: Assistant professor
- name: Tilman Hinnerichs
img: tilman.jpg
url: https://tilman.hinnerichs.com/
bio: PhD student
- name: Reuben Gardos Reid
img: reuben.jpg
url: https://reuben.gr.com/
bio: PhD student
- name: Issa Hanou
img: issa.jpg
url: https://issahanou.github.io/
bio: PhD student
- name: Pamela Wochner
img: pam.jpeg
url: https://reit.tudelft.nl/#/members/pamela
bio: Research Software Engineer
- name: Lorenzo Theunissen
img: stock.jpg
url:
bio: PhD student
- name: Stef Rasing
img: stock.jpg
url:
bio: Student Research Engineer
20 changes: 20 additions & 0 deletions _includes/contributors.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- _includes/contributors.html -->
<div class="grid-sizer"></div>
<div class="grid-item">
<a href="{{ person.url | relative_url }}">
<div class="card hoverable">
{%- assign image_path = person.img | prepend: '/assets/img/people/' -%}

{%- if person.img %}
{%- include figure.html
path=image_path
max-height=250px
alt="person thumbnail" -%}
{%- endif %}
<div class="card-body">
<h2 class="card-title">{{ person.name }}</h2>
<p class="card-text">{{ person.bio }}</p>
</div>
</div>
</a>
</div>
20 changes: 20 additions & 0 deletions _includes/contributors_horizontal.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<div class="card-item col">
<a href="{{ person.url | relative_url }}">
<div class="card hoverable">
<div class="row g-0">
{%- if person.img -%}
<div class="card-img col-md-6">
{% include figure.html path=person.img alt="person thumbnail" %}
</div>
<div class="col-md-6">
{%- else -%}
<div class="col-md-12">
{%- endif -%}
<div class="card-body">
<h3 class="card-title">{{ person.name }}</h3>
<p class="card-text">{{ person.bio }}</p>
</div>
</div>
</div>
</div>
</div>
38 changes: 38 additions & 0 deletions _pages/contributors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: page
title: contributors
permalink: /people/
description: All the people involved in growing Herbs.
nav: true
nav_order: 3
display_categories: [work, fun]
horizontal: false
---

<!-- pages/contributors.md -->
<!-- same style as project -->
<div class="projects">
<!-- There are three categories: core, current & past studetns -->
{% if site.data.contributors.core_team %}
<h1 class="category">Core Team</h1>
<!-- Generate cards for each person -->
{% if page.horizontal -%}
<div class="container">
<div class="row row-cols-2">
{%- for person in site.data.contributors.core_team -%}
{% include contributors_horizontal.html %}
{%- endfor %}
</div>
</div>
{%- else -%}
<div class="grid">
{%- for person in site.data.contributors.core_team -%}
{% include contributors.html %}
{%- endfor %}
</div>
{%- endif -%}
{%- endif -%}
</div>

<h3>Other people involved</h3>
For a more complete overview of current and past contributors, see the list on our [GitHub](https://github.com/orgs/Herb-AI/people).
2 changes: 1 addition & 1 deletion _pages/repositories.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permalink: /repositories/
title: repositories
description: A list of Herb.jl-related repositories.
nav: true
nav_order: 3
nav_order: 2
---

## Herb.jl repositories
Expand Down
Binary file removed assets/img/1.jpg
Binary file not shown.
Binary file removed assets/img/10.jpg
Binary file not shown.
Binary file removed assets/img/11.jpg
Binary file not shown.
Binary file removed assets/img/12.jpg
Binary file not shown.
Binary file removed assets/img/2.jpg
Binary file not shown.
Binary file removed assets/img/3.jpg
Binary file not shown.
Binary file removed assets/img/4.jpg
Binary file not shown.
Binary file removed assets/img/5.jpg
Binary file not shown.
Binary file removed assets/img/6.jpg
Binary file not shown.
Binary file removed assets/img/7.jpg
Binary file not shown.
Binary file removed assets/img/8.jpg
Binary file not shown.
Binary file removed assets/img/9.jpg
Binary file not shown.
Binary file removed assets/img/al-folio-preview.png
Binary file not shown.
Binary file added assets/img/people/issa.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/people/pam.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/people/reuben.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/people/sebastijan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/people/stock.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/people/tilman.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/photos-screenshot.png
Binary file not shown.
Binary file removed assets/img/prof_pic.jpg
Binary file not shown.
Binary file removed assets/img/projects-screenshot.png
Binary file not shown.
Binary file removed assets/img/publications-screenshot.png
Binary file not shown.

0 comments on commit e888ff9

Please sign in to comment.