-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 1.65 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
title: Home
permalink: /
layout: landing
---
<div class="jumbotron jumbotron-fluid mb-0">
<div class="container">
<h1 class="display-4">
Welcome to <span class="text-primary">{{ site.title.short }}</span>
</h1>
<h2 class="display-5 text-dark">{{ site.description }}</h2>
<p class="lead">
We collaborate on ML projects, publish research papers, and represent the
ML community at Memphis.
</p>
<a class="btn btn-primary btn-lg" href="{{ site.url }}/about/" role="button"
>About Us</a
>
<a
class="btn btn-secondary btn-lg"
href="{{ site.url }}/projects/"
role="button"
>Our Projects</a
>
</div>
</div>
<div class="container-fluid featured bg-primary">
<h2 class="text-white text-center">Officers</h2>
<div class="rounded-container bg-white">
<div class="d-flex flex-wrap">
{% for officer in site.data.team.officers %}
<div class="p-1 m-auto">
<div class="team-member-item text-center">
<img
class="img-fluid rounded mb-3"
src="{% if officer.image %}{{
officer.image | absolute_url
}}{% else %}{{
'assets/images/person.png' | absolute_url
}}{% endif %}"
/>
<h5>{{ officer.name }}</h5>
{% if officer.email %}<a href="mailto:{{ officer.email }}">{{
officer.email
}}</a
>{% else %}<a></a>{% endif %} {% if officer.info %}
<p>{{ officer.info }}</p>
{% else %}
<p></p>
{% endif %}
<h6>{{ officer.role }}</h6>
</div>
</div>
{% endfor %}
</div>
</div>
</div>