comparison default/blog/atom.xml @ 97:e8955d01ad0c

blog/atom: Atom feed template
author Goffi <goffi@goffi.org>
date Fri, 19 Jan 2018 18:20:48 +0100
parents
children 2dd56fd2e9c9
comparison
equal deleted inserted replaced
96:94b5806b9e2f 97:e8955d01ad0c
1 <?xml version="1.0" encoding="utf-8"?>
2 <feed xmlns='http://www.w3.org/2005/Atom'>
3 {% if title is defined %}
4 <title>{{title}}</title>
5 {% elif target_profile is defined %}
6 <title>{% trans name=target_profile%}{{name}}'s blog{% endtrans %}</title>
7 {% else %}
8 <title>{% trans app_name=C.APP_NAME%}{{app_name}} blog{% endtrans %}</title>
9 {% endif %}
10 <link href='{{request_uri}}' type='application/atom+xml' rel='self'/>
11 <link href='{{http_uri}}' type='text/html' rel='alternate'/>
12 <link href='{{xmpp_uri}}' type='application/atom+xml' rel='alternate'/>
13 <id>{{xmpp_uri}}</id>
14 <updated>{{updated|date_fmt('iso')}}</updated>
15 {% for item in items %}
16 <entry>
17 {% if item.title_xhtml %}
18 <title type='xhtml'>{{item.title_xhtml}}</title>
19 {% else %}
20 <title>{{item.title|default(item.content|truncate(40, True, '…'))}}</title>
21 {% endif %}
22 <link href='{{items_http_uri[item.id]}}' type='text/html' rel='alternate'/>
23 <link href='{{item.uri}}' type='application/atom+xml' rel='alternate'/>
24 <id>{{item.uri}}</id>
25 <updated>{{item.updated|date_fmt('iso')}}</updated>
26 <published>{{item.published|date_fmt('iso')}}</published>
27 <author>
28 <name>{{item.author}}</name>
29 <uri>xmpp:{{item.author_jid}}</uri>
30 </author>
31 {% for tag in item.tags %}
32 <category term="{{tag}}"/>
33 {% endfor %}
34 {% if item.content_xhtml %}
35 <content type='xhtml'>
36 {{item.content_xhtml}}
37 </content>
38 {% else %}
39 <content type='text'>
40 {{item.content_txt}}
41 </content>
42 {% endif %}
43 </entry>
44 {% endfor %}
45 </feed>