forked from elefthei/splab-web
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
63 lines (58 loc) · 1.6 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
60
61
62
---
layout: default
title: Home
notitle: true
# groups of columns of {roles: list, width: num, image: bool}
role-tables:
- - roles: [faculty]
width: 4
image: true
- roles: [student]
width: 8
image: true
- - roles: [collab]
width: 5
image: false
- roles: [alum]
width: 7
image: false
---
<div class="jumbotron">
<p> {{ site.description }} </p>
</div>
<section>
<table style="border-collapse: collapse;">
<tr>
<td style="border: none; vertical-align: top;">
<h2>Research</h2>
<ul>
{% for r in site.research %}
<li> {{ r }} </li>
{% endfor %}
</ul>
</td>
<td style="border: none; vertical-align: top;">
<h2>Courses</h2>
<ul>
{% for c in site.courses %}
<li> {{ c.number }}: <a href={{ c.url }}>{{ c.name }}</a> </li>
{% endfor %}
</ul>
</td>
</tr>
</table>
</section>
<div id="people">
<h2>People</h2>
{% for role-table in page.role-tables %}
<section class="people row justify-content-between">
{% for role-column in role-table %}
<div class="col-md-{{ role-column.width }}">
{% for role in role-column.roles %}
{% include role-people.html role=role %}
{% endfor %}
</div>
{% endfor %}
</section>
{% endfor %}
</div>