aboutsummaryrefslogtreecommitdiff
path: root/index.md
blob: 6f32f845c8728977115286072f25d3b260a04567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: Loek's excruciatingly interesting blog
layout: default
id: index
toc: false
---

Welcome to my blog page! This is where I post updates on things that I do such
as:

- Cool open source software that I think you should use
- How to set up self-hosted applications
- Rants about Microsoft Windows
- Maybe some recipes I dunno

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}