File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments