-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.12 KB
/
index.html
File metadata and controls
41 lines (37 loc) · 1.12 KB
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
---
layout: default
---
<section id="about">
<h2>About</h2>
{% capture introduction %}{% include introduction.md %}{% endcapture %}
{{ introduction | markdownify }}
</section>
<section id="projects">
<h2>Projects</h2>
{% capture projects %}{% include projects.md %}{% endcapture %}
{{ projects | markdownify }}
</section>
<section id="software">
<h2>Software</h2>
{% capture software %}{% include software.md %}{% endcapture %}
{{ software | markdownify }}
</section>
<section id="people">
<h2>People</h2>
{% assign by_member_type = site.team | group_by: "member_type" | sort: "name" %}
{% for member in by_member_type[0].items %}
{{ member.output }}
{% endfor %}
<h3>Past Members</h3>
{% for member in by_member_type[1].items %}
{{ member.output }}
{% endfor %}
<h3>Visitors</h3>
{% assign by_years = by_member_type[2].items | group_by: "year" | sort: "name" | reverse %}
{% for year in by_years %}
<h4>{{ year.name }}</h4>
{% for member in year.items %}
{{ member.output }}
{% endfor %}
{% endfor %}
</section>