-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
29 lines (26 loc) · 886 Bytes
/
rss.xml
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
---
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<!-- https://validator.w3.org/feed/docs/rss2.html -->
<!-- https://gist.github.com/roachhd/f664d2cae2da899be3f6 -->
<channel>
<title>Github BlogRSS</title>
<link>{{ site.url| append: "/rss.xml" }}</link>
<description>Blog von https://github.com/herbbetz/ct-mai-2020</description>
<image>
<url>{{ site.url| append: "/assets/images/Herb0909_s.png" }}</url>
<width>25</width>
<height>30</height>
</image>
{% for post in site.posts %}
<item>
<title>{{ post.title }}</title>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
<description>{{ post.content | xml_escape }}</description>
<!-- not working in <description>: post.desc or page.desc -->
<link>{{ site.url}}{{post.url }}</link>
</item>
{% endfor %}
</channel>
</rss>