X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/3cccfa3ba4fb64f5213b5d5de7d3e11d7d2b6f57..cf8145d8e8cb87e75171718c88355137d1a900ef:/blog/index.html diff --git a/blog/index.html b/blog/index.html index e02b8d2..7ab9194 100644 --- a/blog/index.html +++ b/blog/index.html @@ -1,21 +1,17 @@ --- -layout: default title: "Ralf's Ramblings" 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 %}