16 lines
319 B
HTML
16 lines
319 B
HTML
---
|
|
layout: default
|
|
title: striving towards mediocrity
|
|
---
|
|
{% for post in site.posts limit: 1 %}
|
|
{% assign content = post.content %}
|
|
{% include post.html %}
|
|
{% endfor %}
|
|
|
|
<h3>other recent posts:</h3>
|
|
{% for post in site.posts limit: 5 offset: 1 %}
|
|
{% include article_list.html %}
|
|
{% endfor %}
|
|
|
|
{% include vcard.html %}
|