blob: c5066705f3114334d7339a6ddc200a3dafca2497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://the-tk.com/blog.html</id>
<title>the-tk.com - Blog</title>
<updated>{{ page.posts[0].date|datefmt }}T00:00:00Z</updated>
<author>
<name>Tomasz Kramkowski</name>
<email>tk@the-tk.com</email>
<uri>https://the-tk.com/</uri>
</author>
<link rel="self" href="https://the-tk.com/blog.atom.xml" />
<link rel="alternate" href="https://the-tk.com/blog.html" />
{% for post in page.posts %}<entry>
<title>{{ post.title }}</title>
<link rel="alternate" href="{{ site.baseurl }}/{{ post.location }}" />
<id>{{ site.baseurl }}/{{ post.location }}</id>
<updated>{{ post.date|datefmt }}T00:00:00Z</updated>
<summary>{{ post.pre }}</summary>
</entry>
{% endfor %}
</feed>
|