-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (41 loc) · 1.4 KB
/
about.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
---
title: About us
---
<h1>{{ page.title }}</h1>
<div class="section-container">
<h2>Committee</h2>
<p>
Feel free to e-mail us at <a href="mailto:[email protected]">[email protected]</a> with any questions or remarks you may have.
</p>
{% assign sorted_people = site.people | sort: 'sort_order' %}
{% for person in sorted_people %}
<a class="item-inline-link"
href="{{ person.person_website }}">
<div class="item-inline-container">
<img class="item-inline-image"
alt="Picture of {{ person.person_name }}"
src="{{ site.baseurl }}{{ person.person_picture }}">
<div class="item-inline-info">
<span class="item-inline-title">{{ person.person_name }}</span>
<br>
<span class="item-inline-subtitle">{{ person.title }}</span>
</div>
</div>
</a>
{% endfor %}
</div>
<div class="section-container">
<h2>History</h2>
{% capture history %}{% include history.md %}{% endcapture %}
{{ history | markdownify }}
</div>
<div class="section-container">
<h2>Statutes</h2>
{% capture statutes %}{% include statutes.md %}{% endcapture %}
{{ statutes | markdownify }}
</div>
<div class="section-container">
<h2>General Assembly minutes</h2>
{% capture minutes %}{% include minutes.md %}{% endcapture %}
{{ minutes | markdownify }}
</div>