-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (79 loc) · 2.87 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
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
---
layout: default
---
<div class="sticky-info">
<h2>Welcome to Maptime Boulder!</h2>
We are a group of map enthusiasts that meet regularly in Boulder, Colorado!
You can always find us at: <br>
<p span style="text-align:center"><a class="button fill-red" href="http://meetup.com/Maptime-Boulder">meetup.com/Maptime-boulder</a></span>
<br><br>
<h3>Check out some of the latest resources we've compiled:</h3>
<ul>
<li><a href="http://learnosm.org/en/">Getting started with OpenStreetMap</a></li>
<li><a href="https://www.mapbox.com/blog/osm-mapping-guide/">Getting Started with JOSM</a></li>
<li><a href="http://www.townsendjennings.com/github-101/gh-pages/#/">GitHub Pages 101</a></li>
</ul>
</div>
<h2>Upcoming Events</h2>
<hr>
<!-- This loops through the paginated posts -->
{% for item in paginator.posts%}
<div class='space-bottom4'>
{% if item.category == 'event' %}
{% if item.date > site.time %}
<h2><a href='{{site.baseurl}}{{item.url}}'>{{item.title}}</a></h2>
<div class='keyline-all round pad2 col12 clearfix'>
<div class='col8 pad0y'>
Join us: <span class='quiet'>{{item.date | date:"%A, %b %d %Y %I:%M %p"}}</span>
</div>
<div class='col4'>
<a class='button fill-orange block' href='{{item.rsvp}}'>RSVP</a>
</div>
</div>
{{item.content}}
{% if item.when == "TBD" %}
<div class='keyline-all round pad2 col12 clearfix' style="text-align:center;">
<span class='quiet'>Date to be determined!</span>
</div>
{% else %}
{% endif %}
{% endif %}
{% endif %}
</div>
{% endfor %}
<hr>
<br>
<br>
<h2>Past Events</h2>
<!-- This loops through the paginated posts -->
{% for item in paginator.posts%}
<div class='space-bottom4'>
{% if item.category == 'event' %}
{% if item.date < site.time %}
<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'>
Event Date: <span class='quiet'>{{item.date | date:"%A, %b %d %Y"}}</span>
</div>
<div class='col4'>
<a class='button fill-orange block' href='{{item.rsvp}}'>Link to Meetup</a>
</div>
</div>
{% endif %}
{% endif %}
</div>
{% 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>