@@ -5,22 +5,29 @@ title: {{ page.title | xml_escscape }}
5
5
6
6
<?xml version =" 1.0" encoding =" UTF-8" ?>
7
7
<rss version =" 2.0" xmlns : atom =" http://www.w3.org/2005/Atom" xmlns : itunes =" http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns : dc =" http://purl.org/dc/elements/1.1/" xmlns : rdf =" http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
8
- <channel >
9
- <title >{{ site.title }}</title >
10
- <description >{{ site.description }}</description >
11
- <link >{{ site.url }}{{ site.rss_path }}</link >
12
- <lastBuildDate >{{ site.time | date_to_rfc822 }}</lastBuildDate >
13
- <pubDate >{{ site.time | date_to_rfc822 }}</pubDate >
14
- <ttl >1800</ttl >
8
+ <channel >
9
+ <title ><![CDATA[ {{ site.title }}]]> </title >
10
+ <image >
11
+ <url >{{ site.assets_path }}/images/favicon.png</url >
12
+ <title ><![CDATA[ {{ site.title }}]]> </title >
13
+ <link >{{ site.url }}</link >
14
+ </image >
15
+ <description ><![CDATA[ {{ site.description }}]]> </description >
16
+ <link >{{ site.url }}</link >
17
+ <author >{{ site.author.name }}</author >
18
+ <lastBuildDate >{{ site.time | date_to_rfc822 }}</lastBuildDate >
19
+ <pubDate >{{ site.time | date_to_rfc822 }}</pubDate >
20
+ <ttl >1800</ttl >
15
21
16
- {% for post in site.posts limit:10 %}
17
- <item >
18
- <title ><![CDATA[ {{ post.title }}]]> </title >
19
- <description >{{ post.content | xml_escape }}</description >
20
- <link >{{ site.url }}{{ post.url }}</link >
21
- <guid >{{ site.url }}{{ post.id }}</guid >
22
- <pubDate >{{ post.date | date_to_rfc822 }}</pubDate >
23
- </item >
24
- {% endfor %}
25
- </channel >
22
+ {% for post in site.posts limit:10 %}
23
+ <item >
24
+ <title ><![CDATA[ {{ post.title }}]]> </title >
25
+ <description >{{ post.content | xml_escape }}</description >
26
+ <link >{{ site.url }}{{ post.url }}</link >
27
+ <guid >{{ site.url }}{{ post.id }}</guid >
28
+ <category ><![CDATA[ {{ post.category }}]]> </category >
29
+ <pubDate >{{ post.date | date_to_rfc822 }}</pubDate >
30
+ </item >
31
+ {% endfor %}
32
+ </channel >
26
33
</rss >
0 commit comments