-
Notifications
You must be signed in to change notification settings - Fork 71
/
board-of-directors.html
97 lines (83 loc) · 3.2 KB
/
board-of-directors.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
layout: default
title: Board of Directors
description: "The Chi Hack Night Board of Directors is responsible for governing our organization, as well as running our events, managing our website, keeping the books, and doing all the other things needed to make Chi Hack Night happen."
redirect_from:
- contact.html
- team.html
- governance-meetings.html
---
<h1>Board of Directors</h1>
<p>The Chi Hack Night Board of Directors is responsible for governing our organization, as well as running our events, managing our website, keeping the books, and doing all the other things needed to make Chi Hack Night happen.</p>
<p>The board consists of 11 members, who will each serve a 2-year term and are either appointed or elected by the members of Chi Hack Night.</p>
<p>The work of the board is done during board meetings, held every 6 weeks, and through three working committees: Event Operations, Membership & Volunteers, and Communication & Promotion.</p>
<p><a href='https://drive.google.com/drive/u/0/folders/1ucK22KOFiQT97gDPLuWCxp0FKiVqJb1a'>View published meeting notes for the Board of Directors ></a></p>
<hr />
<table id='bod' class='table'>
<thead>
<tr>
<th style="width:20%;"></th>
<th style="width:25%;">Board member</th>
<th style="width:35%;" class='hidden-xs hidden-sm'>Biography</th>
<th style="width:20%;" class='hidden-xs hidden-sm'>Committees</th>
</tr>
</thead>
<tbody>
{% assign members_sorted = site.categories['board'] | sort: 'name_last' %}
{% for member in members_sorted %}
{% if member.active == true %}
<tr>
<td>
<a href='{{ member.url }}'>
<img src="{{member.image}}" alt="{{member.name_first}} {{member.last}}" class='img-responsive img-rounded'/>
</a>
</td>
<td>
<strong><a href='{{ member.url }}'>{{member.name_first}} {{member.name_last}}{% if member.position %}, {{member.position}}{% endif %}</a></strong><br />
Board seat: {{member.seat}}<br />
Term: {{member.term_start}} - {{member.term_expires}}
</td>
<td class='hidden-xs hidden-sm'>
{{member.content | truncatewords: 50}} <a href='{{ member.url }}'>Read more ></a>
</td>
<td class='hidden-xs hidden-sm'>
{% for comm in member.committees %}
{{comm}}<br />
{% endfor %}
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<h2>Past Directors</h2>
<table id='bod' class='table'>
<thead>
<tr>
<th>Former board member</th>
<th>Board seat</th>
<th>Years served</th>
</tr>
</thead>
<tbody>
{% assign members_sorted = site.categories['board'] | sort: 'term_expires' %}
{% for member in members_sorted %}
{% if member.active == false %}
<tr>
<td>
<strong><a href='{{ member.url }}'>{{member.name_first}} {{member.name_last}}{% if member.position %}, {{member.position}}{% endif %}</a></strong>
</td>
<td>{{member.seat}}</td>
<td>
{% if member.term_start == member.term_expires %}
{{member.term_expires}}
{% else %}
{{member.term_start}} - {{member.term_expires}}
{% endif %}
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<script src="/lib/bod.js"></script>