-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
27 lines (26 loc) · 1.37 KB
/
people.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
title: BCI People
description: The Berkeley AI Research Climate Initiative is a community of researchers and practitioners working to create better data, methods, and models that enable us as a society to better take care of our planet and the limited resources on it. This page shows our team members and advisors.
---
<section class="wrapper bg-light" style="margin-top:1em">
<div class="container py-lg-8 gx-lg-8 gx-xl-12 py-md-4">
{% for division in site.data.people %}
<div class="row gx-lg-8 gx-xl-12 gy-10">
<h2>BCI {{ division.title }}</h2>
{% for person in division.people %}
<div class="item col-md-3 col-sm-6" style="text-align:center">
<a href="{{ person.website }}" target="_blank">
<img class="" style="border-radius: 40px; width: 74%; min-width: 10em; margin-bottom:1.3em"
src="./assets/img/people/{{ person.image }}" alt="{{ person.name }}" />
</a>
<h4 class="mb-1">
<a style="color:#343F52" href="{{ person.website}}" target="_blank">{{ person.name }}</a>
</h4>
<div class="meta mb-2" style="padding-bottom:0em">{{ person.role }}</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</section>