X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/4ac6ce5cb46f71d6eefa5f6e9d4a27650599199f..d3c771bb7374a6611cbd8e564f4e7bd4ea740660:/personal/blog/index.html diff --git a/personal/blog/index.html b/personal/blog/index.html new file mode 100644 index 0000000..70032ce --- /dev/null +++ b/personal/blog/index.html @@ -0,0 +1,17 @@ +--- +title: "Ralf's Ramblings" +slug: Blog +rss: true +--- + +{% 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 %}