You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
511 B
HTML
17 lines
511 B
HTML
7 years ago
|
|
||
|
{% assign role-key = include.role %}
|
||
|
|
||
|
{% for role in site.roles %}
|
||
|
{% if role.key == role-key %}
|
||
|
<h3 class="pt-3"> {{ role.name }} </h3>
|
||
|
<div class="role {{ role.key }}">
|
||
|
{% for item in site.data.people %}
|
||
|
{% assign person = item[1] %}
|
||
|
{% if person.role == role.key %}
|
||
|
{% include person.html person=person image=include.image %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|