-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 2.04 KB
/
index.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
---
layout: default
---
<!-- This loops through the paginated posts -->
{% for item in paginator.posts %}
{% if item.category == 'event' %}
<h2><a href='{{site.baseurl}}{{item.url}}'>{{item.title}}</a></h2>
{{item.content}}
<div class='keyline-all round pad2 col12 clearfix'>
<div class='col8 pad0y'>
Join us: <span class='quiet'>{{item.date | date:"%A, %b %d %Y"}}</span>
</div>
<div class='col4'>
<a class='button fill-orange block' href='{{item.rsvp}}'>RSVP</a>
</div>
</div>
{% else %}
<h2><a href='{{site.baseurl}}{{item.url}}'>{{item.title}}</a></h2>
<div class='pad1y keyline-top'>
<strong class='quiet small block space-bottom1'>
Posted {{item.date | date:"%b %d %Y"}} {% if item.author %}by {{item.author}}{% endif %}
</strong>
</div>
{{item.content}}
{% endif %}
{% endfor %}
<!-- Pagination links -->
<div class='col12 center small strong space pad2y'>
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href='{{site.baseurl}}/' class='button fill-blue icon left-arrow'>Newer</a>
{% else %}
<a href='{{site.baseurl}}/page{{ paginator.previous_page }}' class='button fill-blue icon left-arrow'>Newer</a>
{% endif %}
{% endif %}
{% if paginator.next_page %}
<a href='{{site.baseurl}}/page{{ paginator.next_page }}' class='button fill-blue rcon right-arrow'>Older</a>
{% endif %}
</div>
<div class='col12'>
<h2>Code of Conduct</h2>
<p>
<a href="/code-of-conduct/" title="MaptimeATX Code of Conduct">
MaptimeATX Code of Conduct
</a>
</p>
<h2>Contact</h2>
<p>For general inquiries and comments, contact us at <a href="mailto:{{site.orgemail}}">{{site.orgemail}}</a>.</p>
<p><strong>Our Organizers:</strong></p>
<ul>
{% for o in site.organizers %}
<li>
{{o.name}} -
<a href="https://twitter.com/{{o.twitter}}" title="@{{o.twitter}} on Twitter">@{{o.twitter}}</a> -
<a href="mailto:{{o.email}}" title="email">{{o.email}}</a>
</li>
{% endfor %}
</ul>
</div>