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
46
47
48
49
50
|
{
"valid_tags": [
"beta",
"connect 4",
"git",
"home",
"open source",
"phone",
"server",
"software"
],
"posts": [
{
"title": "Loek's excruciatingly interesting blog",
"subtitle": "This is the article that's displayed on the home page",
"author": "Loek",
"date": "April 12 2021",
"tags": ["home"],
"cover": "/img/helloworld.png",
"id": "index"
},
{
"title": "Software that I use",
"subtitle": "Desktop software, server software, phone apps, everything",
"author": "Loek",
"date": "April 13 2021",
"tags": ["software", "open source", "server", "phone"],
"cover": "/img/software.png",
"id": "software"
},
{
"title": "Connect 4 beta live!",
"subtitle": "Announcement post",
"author": "Loek",
"date": "April 24 2021",
"tags": ["connect 4", "beta"],
"cover": "/img/connectfourbeta.png",
"id": "connect4"
},
{
"title": "My git setup",
"subtitle": "How I use git on my server",
"author": "Loek",
"date": "April 28 2021",
"tags": ["git", "server", "software"],
"cover": "/img/git.png",
"id": "git"
}
]
}
|