minor changes
[martlubbers.net.git] / foerageer.xml
1 ---
2 layout: null
3 ---
4 <?xml version="1.0" encoding="UTF-8" ?>
5 <rss version="2.0">
6 <channel>
7 {% assign blog = site.pages | where:'name','foerageer.md' %}
8 {% for page in blog limit:1 %}
9 <title>{{ page.title }}</title>
10 <description>
11 {{ page.title }}:
12 {{ page.description }}
13 </description>
14 <link>{{ page.url }}</link>
15 <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
16 {% endfor %}
17
18 {% for post in site.posts %}
19 <item>
20 <title>{{ post.title }}</title>
21 <link>
22 {{ post.url | prepend: site.url }}
23 </link>
24 <description>
25 {{ post.excerpt }}
26 </description>
27 <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
28 <guid>
29 {{ post.url | prepend: site.url }}
30 </guid>
31 </item>
32 {% endfor %}
33 </channel>
34 </rss>