X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/cd9f8a14cc1c051b99e52650773eda2eef0f6a03..cf8145d8e8cb87e75171718c88355137d1a900ef:/blog/index.html diff --git a/blog/index.html b/blog/index.html index 83d9398..7ab9194 100644 --- a/blog/index.html +++ b/blog/index.html @@ -1,23 +1,17 @@ --- -layout: default +title: "Ralf's Ramblings" +slug: Blog +rss: true --- -
- -

Posts

- - - -

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 %}