devroom.io/content/index.haml

38 lines
1.0 KiB
Plaintext
Raw Normal View History

2013-03-22 22:53:57 +00:00
---
2013-08-14 08:39:48 +00:00
title: blog
2013-03-22 22:53:57 +00:00
---
2013-08-16 04:14:09 +00:00
.row
.col-sm-12
#welcome
:markdown
_Welcome to Ariejan.net and thanks for checking out the frontpage ;-)_
This is my personal tech blog (see below) where I record and share my
development and other activities. You can [read more about me][1],
checkout [my past talks][2] or [open source projects][3].
[1]: http://ariejan.net/about/
[2]: http://ariejan.net/talks/
[3]: http://ariejan.net/projects/
.row
.col-sm-12
2013-08-16 04:14:09 +00:00
#posts
- sorted_articles[0..4].each do |article|
2013-08-16 04:14:09 +00:00
.post
%h2.title= link_to article[:title], article.path, title: article[:title]
2013-10-24 15:04:12 +00:00
%p.meta= get_pretty_date(article)
2013-08-16 04:14:09 +00:00
%p.summary= article[:summary]
.row
.col-sm-12
2013-08-16 04:27:57 +00:00
#older-posts
- sorted_articles[5..-1].each do |article|
2013-08-16 04:27:57 +00:00
.post
%h2.title
%a{href: article.path, title: article[:title]}
%span.meta= get_short_date(article)
= article[:title]