X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/cd9f8a14cc1c051b99e52650773eda2eef0f6a03..647f07c29a79a6d2c8fc1bfbd6e6a089d400934d:/blog/index.html diff --git a/blog/index.html b/blog/index.html index 83d9398..70032ce 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.title }}

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