1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
---
layout: default
title: ~laumann
---
<article class="index">
<h3>Latest Posts</h3>
{% for post in site.posts limit:5 %}
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<div class="post-date">
{{post.date | date: "%F" }}
{% for tag in post.tags %}
<span class="tag">{{tag}}</span>
{% endfor %}
</div>
<div class="post-blurb">
<p>{% if post.blurb %}{{ post.blurb }}{% else %}{{ post.excerpt }}{% endif %}</p>
</div>
{% endfor %}
</article>