aboutsummaryrefslogtreecommitdiff
path: root/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'index.md')
-rw-r--r--index.md30
1 files changed, 29 insertions, 1 deletions
diff --git a/index.md b/index.md
index f6a70e5..6f32f84 100644
--- a/index.md
+++ b/index.md
@@ -1,6 +1,8 @@
---
title: Loek's excruciatingly interesting blog
-layout: index
+layout: default
+id: index
+toc: false
---
Welcome to my blog page! This is where I post updates on things that I do such
@@ -15,3 +17,29 @@ The page you're looking at right now is also open-source! The code for this
page can be found on [GitHub](https://github.com/lonkaars/blog), and should
also be available on [my private git server](https://git.pipeframe.xyz).
+{% if site.rss != nil %}
+An rss/atom feed of this blog is also available:
+```
+{{ site.rss.url }}
+```
+{% endif %}
+
+---
+
+## Recent posts
+
+<div class="recentPosts">
+{% for post in site.posts limit:4 %}
+ <div class="postCard">
+ <a href="{{ post.url }}">
+ <img src="{{ post.cover }}" alt="post cover" class="cover">
+ <h2 class="title">{{ post.title }}</h2>
+ <strong class="subtitle">{{ post.subtitle }}</strong>
+ </a>
+ {% include tags.html tags=post.tags %}
+ </div>
+{% endfor %}
+</div>
+
+[Go to all posts](/search){:.button}
+