2.5.2 post: fix full changelog
[openjpeg.git] / rss.xml
1 ---
2 layout: null
3 title : RSS Feed
4 ---
5
6 <?xml version="1.0" encoding="UTF-8" ?>
7 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
8 <channel>
9         <title>{{ site.title | xml_escape }}</title>
10         <description>{{ site.title | xml_escape }} - {{ site.author.name | xml_escape }}</description>
11         <link>{{ site.production_url }}</link>
12         <atom:link href="{{ site.production_url }}{{ site.JB.rss_path }}" rel="self" type="application/rss+xml" />
13         <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
14         <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
15         <ttl>60</ttl>
16
17 {% for post in site.posts limit:20 %}
18         <item>
19                 <title>{{ post.title | xml_escape }}</title>
20                 <description>{{ post.content | xml_escape }}</description>
21                 <link>{{ site.production_url }}{{ post.url }}</link>
22                 <guid>{{ site.production_url }}{{ post.id }}</guid>
23                 <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
24         </item>
25 {% endfor %}
26
27 </channel>
28 </rss>