2.5.2 post: fix full changelog
[openjpeg.git] / atom.xml
1 ---
2 layout: null
3 title : Atom Feed
4 ---
5 <?xml version="1.0" encoding="utf-8"?>
6 <feed xmlns="http://www.w3.org/2005/Atom">
7  
8  <title>{{ site.title | xml_escape }}</title>
9  <link href="{{ site.production_url }}{{ site.JB.atom_path }}" rel="self"/>
10  <link href="{{ site.production_url }}"/>
11  <updated>{{ site.time | date_to_xmlschema }}</updated>
12  <id>{{ site.production_url }}</id>
13  <author>
14    <name>{{ site.author.name | xml_escape }}</name>
15    <email>{{ site.author.email }}</email>
16  </author>
17
18  {% for post in site.posts limit:20 %}
19  <entry>
20    <title>{{ post.title | xml_escape }}</title>
21    <link href="{{ site.production_url }}{{ post.url }}"/>
22    <updated>{{ post.date | date_to_xmlschema }}</updated>
23    <id>{{ site.production_url }}{{ post.id }}</id>
24    <content type="html">{{ post.content | xml_escape }}</content>
25  </entry>
26  {% endfor %}
27  
28 </feed>