X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/3cccfa3ba4fb64f5213b5d5de7d3e11d7d2b6f57..775174e2210a0c8c0660a7a4f1bc3d7c40aa4c4b:/blog/index.html diff --git a/blog/index.html b/blog/index.html index e02b8d2..a0d8f1a 100644 --- a/blog/index.html +++ b/blog/index.html @@ -5,17 +5,14 @@ slug: Blog rss: true --- - - - -

subscribe via RSS

+{% assign num_posts = 5 %} +{% for post in site.posts %} + {% assign num_posts = num_posts | minus: 1 %} + {% if num_posts >= 0 %} +
+
Permalink • {{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}
+

{{ post.subtitle }}

+
+ {{ post.content }} + {% endif %} +{% endfor %}