-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
83 lines (64 loc) · 1.9 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
---
layout: default
title: RIRUG
---
<div id="subheading">
<div class="row">
<div class="medium-8 medium-centered columns content">
<h2>Rhode Island Ruby Users Group</h2>
<p>If you're new, we're here to help. If you're more experienced, join us to discuss a new technique you've mastered or a problem you're struggling to solve. If you're somewhere in the middle, level up with presentations from the local and not-so-local community.</p>
<p>Please join <a href="http://www.meetup.com/Rhode-Island-Ruby-Group/">our group on Meetup.com</a> to stay updated.</p>
</div>
</div>
</div>
<div class="row">
<div class="medium-12 columns">
<hr>
{% assign first_post = site.posts.first %}
<h2>{{ first_post.title }}</h2>
{{ first_post.content }}
<hr>
<ul>
{% for post in paginator.posts %}
<li>
<div class="title"><a href="{{ post.url }}">{{ post.title }}</a></div>
<div class="pubdate">{{ post.date | date_to_string }}</div>
</li>
{% endfor %}
</ul>
<ul class="pagination">
{% if paginator.previous_page %}
<li class="arrow">
{% if paginator.previous_page == 1 %}
<a href="/">«</a>
{% else %}
<a href="/page{{paginator.previous_page}}">«</a>
{% endif %}
</li>
{% else %}
<li class="arrow unavailable"><a href="">«</a></li>
{% endif %}
{% if paginator.page == 1 %}
<li class="current"><a href="#">1</a></li>
{% else %}
<li><a href="/">1</a></li>
{% endif %}
{% for count in (2..paginator.total_pages) %}
{% if count == paginator.page %}
<li class="current"><a href="#">{{count}}</a></li>
{% else %}
<li><a href="/page{{count}}">{{count}}</a></li>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<li class="arrow">
<a href="/page{{paginator.next_page}}">»</a></li>
</li>
{% else %}
<li class="arrow unavailable">
»
</li>
{% endif %}
</ul>
</div>
</div>