Skip to content

Commit c6d2565

Browse files
committed
add a page with just the Ukrainian Fellows
1 parent d5b7b2e commit c6d2565

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

pages/fellows-ukraine.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
permalink: /fellows-ukraine.html
3+
layout: default
4+
title: IRIS/HEP Ukrainian Fellows
5+
---
6+
7+
# IRIS/HEP Ukrainian Fellows (IMPRESS-U and/or other funding)
8+
9+
{% assign fellows = site.fellows | last_name_sort: "fellow-name"
10+
| reverse
11+
| iris_hep_fellow_sort
12+
| reverse %}
13+
{% assign nsf-fellows = fellows | where_exp: "item", "item.ukraine == true" | where_exp: "item", "item.hidden != true" %}
14+
15+
<div class="container-fluid">
16+
<div class="row">
17+
{% for person in nsf-fellows %}
18+
<div class="card" style="width: 12rem;">
19+
<img class="card-img-top" src="{{person.photo}}" alt="Card image cap">
20+
<div class="card-body d-flex flex-column">
21+
<div class="card-text">
22+
<b><a href="{{person.url}}">{{person.fellow-name}}</a></b><br>
23+
<small>{{person.institution}}</small><br><br>
24+
</div>
25+
<div class="card-text mt-auto"><i>
26+
{% include fellow_dates.html dates=person.dates %}
27+
</i><br></div>
28+
</div>
29+
</div>
30+
{% endfor %}
31+
</div>
32+
<br>
33+
</div>

0 commit comments

Comments
 (0)