70032ce218c9eeb4941f03b338316b159c0843a8
[web.git] / ralf / blog / index.html
1 ---
2 title: "Ralf's Ramblings"
3 slug: Blog
4 rss: true
5 ---
6
7 {% assign num_posts = 5 %}
8 {% for post in site.posts %}
9     {% assign num_posts = num_posts | minus: 1 %}
10     {% if num_posts >= 0 %}
11         <header class="subtitle">
12             <div class="side"><a href="{{ post.url }}">Permalink</a> • {{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</div>
13             <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
14         </header>
15         {{ post.content }}
16     {% endif %}
17 {% endfor %}