-
Notifications
You must be signed in to change notification settings - Fork 6
/
find-an-officer.html
55 lines (37 loc) · 1.17 KB
/
find-an-officer.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
---
title: Find an Officer
subtitle: Just the person you're looking for...
---
{% for role in site.data.officetitles %}
{% assign officers = site.data.regnum | where:"group", "Insulae Draconis" | where:"office", role.slug | sort: 'responsibility' %}
<img src="{{ role.emblem }}" width="96" height="96" align="right">
<h3>{{ role.title }}</h3>
{% assign numofficers = officers|size %}
{% if numofficers > 0 %}
{% for officer in officers %}
{% unless officer.responsibility == " " %}
<h6>{{officer.responsibility}}</h6>
{% endunless %}
<p><strong>{{ officer.scaname }}</strong>
{% unless officer.mundanename == "" %}
({{ officer.mundanename }})
{% endunless %}
{% unless officer.pronouns == "" %}
<span class="text-muted">{{ officer.pronouns }}</span>
{% endunless %}<br>
{% unless officer.email == "" %}
<strong>Contact:</strong> {{ officer.email }}
{% endunless %}
</p>
{% endfor %}
{% if role.report %}<p><a href="{{ role.report }}">How to report</a></p>{% endif %}
{% if role.desc %}
<p>
{{ role.desc }}
</p>
{% endif %}
{% else %}
<p>No information available at this time.</p>
{% endif %}
<hr>
{% endfor %}