forked from burlingtonruby/burlingtonruby.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 922 Bytes
/
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
---
layout: main
---
<article>
{% for page in site.posts limit:1 %}
<h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
<div class='vcard event-location'>
<address class='adr'>
<div class="street-address">{{ page.address }}</div>
<span class="locality">{{ page.locality }}</span>, <abbr class='region'>{{ page.region }}</abbr>
</address>
<time>{{ page.time }}</time>
</div>
{% unless page.registration == false %}
<a href="{{ page.registration }}" target="_blank" class="register">Register</a>
{% endunless %}
{{ page.content }}
{% endfor %}
</article>
<footer>
<p>Stay up-to-date with BurlingtonJS on Twitter <a href='https://twitter.com/btvjs'>@btvjs</a>.</p>
<p>Browse our meeting archive:</p>
<ol>
{% for post in site.posts reversed offset:1 %}
<li><a href='{{ post.url }}'>{{ post.title }}</a></li>
{% endfor %}
</ol>
</footer>