230
|
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(80, True, '…'), 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 <div xmlns='http://www.w3.org/1999/xhtml'> |
|
37 {{item.content_xhtml}} |
|
38 </div> |
|
39 </content> |
|
40 {% else %} |
|
41 <content type='text'> |
|
42 {{item.content_txt}} |
|
43 </content> |
|
44 {% endif %} |
|
45 </entry> |
|
46 {% endfor %} |
|
47 </feed> |