blob: e1758b96bca819fe37e820f115a83a974fc4c41b (
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
|
---
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).
An rss/atom feed of this blog is also available:
```
https://{{ site.domain }}/atom.xml
```
---
## Recent posts
<div class="recentPosts">
{% for post in site.items limit:4 %}
<div class="postCard">
<a href="{{ post.url }}" class="nolink block">
<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}
|