Newer
Older
{% comment %}
This page uses _data/hifis_team.yml to generate its content.
It does on purpose NOT include the content of the markdown page.
{% endcomment %}
{% include top.html %}
<body>
{% include header.html %}
<main>
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
{% assign team_members_core = site.data.hifis_team
| where: "associate", false | sort: "name" %}
{% assign team_members_associate = site.data.hifis_team
| where: "associate", true | sort: "name" %}
<section>
<article>
<div>
<h1>Team</h1>
<div class="team_list">
{% for person in team_members_core %}
{% include team_card.html person=person %}
{% endfor %}
</div>
</div>
</article>
</section>
<section>
<article>
<div>
<h1>Associates</h1>
<div class="team_list">
{% for person in team_members_associate %}
{% include team_card.html person=person %}
{% endfor %}
</div>
</div>
</article>
</section>
</main>
{% include footer.html %}
</body>
</html>