-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpage.html
52 lines (44 loc) · 1.61 KB
/
page.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
---
layout: default
---
<div class="content cf">
<div class="content-main">
{{ content }}
</div>
<div class="content-side">
{% for item in page.sidebar %}
{% if item == 'next-meeting' %}
<div class="side-info next-meeting">
{% for meeting in site.categories.meetings limit: 1 %}
<a href={{ meeting.url }}>Next CUGOS meeting: {{ meeting.title }}</a>
{% endfor %}
</div>
{% endif %}
{% if item == 'contact' %}
<div class="side-info">
<h2>Contact</h2>
<p><span>Email</span><br>[email protected]</p>
<p><span>Address</span><br>CUGOS<br>P.O. Box 1614<br>Langley, WA 98260<br></p>
</div>
{% endif %}
{% if item == 'coc' %}
<div class="side-info">
<h2>Code of Conduct</h2>
<p>CUGOS strives to be an inclusive community for anyone interested in open source geography. Before attending our meetings, please familiarize yourself with our <a href="/code-of-conduct/">Code of Conduct</a>.
</div>
{% endif %}
{% if item == 'about' %}
<div class="side-info">
<h2>About CUGOS</h2>
<p><a href="/about/">Learn more</a> about CUGOS, our mission, and our annual reports.</p>
</div>
{% endif %}
{% if item == 'mailing-list' %}
<div class="side-info">
<p>Want to stay up to date with CUGOS news? <a href="https://groups.google.com/forum/#!forum/cugos" target="_blank">Join our Google Group</a>.</p>
<p><small>You'll have to request access, we'll approve you ASAP.</small></p>
</div>
{% endif %}
{% endfor %}
</div>
</div>