-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 977 Bytes
/
index.html
File metadata and controls
35 lines (34 loc) · 977 Bytes
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
---
layout: default
type: website
description: Ruby Ireland 2013
title: Ruby Ireland - may the code rise to meet you
---
<div>
{% for post in site.posts limit:3 %}
{% assign author = site.authors[post.author] %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>
<span class="credit-line-styled">Posted by {{ author.display_name }} on {{ post.date | date_to_long_string }}.</span>
</p>
{{ post.content }}
{% endfor %}
</div>
<div class="inverted line-separator"></div>
<div class="recent_posts">
<h3>Recent Posts</h3>
{% for post in site.posts limit:5 %}
{% assign author = site.authors[post.author] %}
<div>
<h5 class="inline">
<a href="{{ post.url }}">{{ post.title }}</a>
</h5>
<em>Posted by {{ author.display_name }} on {{ post.date | date_to_long_string }}.</em>
</div>
{% endfor %}
<div>
<h5 class="inline">
<a href="all.html">Archives</a>
</h5>
</div>
</div>