@@ -6,8 +6,6 @@ sitemap: false
6
6
permalink : /team/
7
7
---
8
8
9
- # Group Members
10
-
11
9
<div class =" clearfix " >
12
10
13
11
{% assign members = site.data.contributors %}
@@ -18,22 +16,36 @@ permalink: /team/
18
16
{% assign even_odd = even_odd | plus: 1 | modulo: 2 %}
19
17
{% assign previndex0 = forloop.index0 | minus: 1 %}
20
18
21
- {% if member.active == nil and members[ previndex0] .active == 1 %}
22
-
23
- </div >
19
+ {% assign needs_break = false %}
24
20
25
- {% assign even_odd = 0 %}
21
+ {% if member.lead == nil and members[ previndex0] .lead == 1 %}
22
+ {% assign needs_break = true %}
23
+ {% assign kind = "Associated" %}
24
+ {% endif %}
26
25
27
- <hr />
26
+ {% if member.associated == nil and members[ previndex0] .associated == 1 %}
27
+ {% assign needs_break = true %}
28
+ {% assign kind = "Team" %}
29
+ {% endif %}
28
30
29
- ### Alumni
31
+ {% if member.active == nil and members[ previndex0] .active == 1 %}
32
+ {% assign needs_break = true %}
33
+ {% assign kind = "Alumni" %}
34
+ {% endif %}
30
35
31
- {% endif %}
36
+ {% if needs_break %}
37
+ {% if even_odd == 1 %}
38
+ </div >
39
+ {% endif %}
32
40
41
+ <hr />
42
+ ### {{ kind }}
33
43
34
- {% if even_odd = = 0 %}
44
+ {% assign even_odd = 0 %}
35
45
<div class =" row " >
36
- {% endif %}
46
+ {% elsif even_odd == 0 %}
47
+ <div class =" row " >
48
+ {% endif %}
37
49
38
50
<div class =" col-sm-6 clearfix " >
39
51
{% if member.photo %}
@@ -56,6 +68,9 @@ permalink: /team/
56
68
{% if member.education %}
57
69
<p > <strong >Education:</strong > {{ member.education }} </p >
58
70
{% endif %}
71
+ {% if member.org %}
72
+ <p > <strong >Institution:</strong > {{ member.org }} </p >
73
+ {% endif %}
59
74
</div >
60
75
61
76
{% if even_odd == 1 %}
0 commit comments