1 | <?xml version="1.0" encoding="utf-8"?> |
---|
2 | <feed xmlns="http://www.w3.org/2005/Atom" |
---|
3 | xmlns:dc="http://purl.org/dc/elements/1.1/" |
---|
4 | xmlns:wfw="http://wellformedweb.org/CommentAPI/" |
---|
5 | xml:lang="{{tpl:BlogLanguage}}"> |
---|
6 | |
---|
7 | <title type="html">{{tpl:BlogName encode_xml="1"}}{{tpl:SysFeedSubtitle encode_xml="1"}}</title> |
---|
8 | <subtitle type="html">{{tpl:BlogDescription encode_xml="1"}}</subtitle> |
---|
9 | <link href="{{tpl:SysSelfURI}}" rel="self" type="application/atom+xml"/> |
---|
10 | <link href="{{tpl:BlogURL}}" rel="alternate" type="text/html" |
---|
11 | title="{{tpl:BlogDescription remove_html="1" encode_xml="1"}}"/> |
---|
12 | <updated>{{tpl:BlogUpdateDate iso8601="1"}}</updated> |
---|
13 | <author> |
---|
14 | <name>{{tpl:BlogEditor encode_xml="1"}}</name> |
---|
15 | </author> |
---|
16 | <id>{{tpl:BlogFeedID}}</id> |
---|
17 | <generator uri="http://www.dotclear.org/">Dotclear</generator> |
---|
18 | |
---|
19 | <tpl:Entries> |
---|
20 | |
---|
21 | <entry> |
---|
22 | <title>{{tpl:EntryTitle encode_xml="1"}}</title> |
---|
23 | <link href="{{tpl:EntryURL}}" rel="alternate" type="text/html" |
---|
24 | title="{{tpl:EntryTitle encode_xml="1"}}" /> |
---|
25 | <id>{{tpl:EntryFeedID}}</id> |
---|
26 | <published>{{tpl:EntryDate iso8601="1"}}</published> |
---|
27 | <tpl:EntryIf republished="1"> |
---|
28 | <updated>{{tpl:EntryDate iso8601="1" upddt="1"}}</updated> |
---|
29 | </tpl:EntryIf> |
---|
30 | <tpl:EntryIf republished="0"> |
---|
31 | <updated>{{tpl:EntryDate iso8601="1"}}</updated> |
---|
32 | </tpl:EntryIf> |
---|
33 | <author><name>{{tpl:EntryAuthorCommonName encode_xml="1"}}</name></author> |
---|
34 | <tpl:EntryIf has_category="1"> |
---|
35 | <dc:subject>{{tpl:EntryCategory encode_html="1"}}</dc:subject> |
---|
36 | </tpl:EntryIf> |
---|
37 | <tpl:EntryTags><dc:subject>{{tpl:TagID}}</dc:subject></tpl:EntryTags> |
---|
38 | |
---|
39 | <content type="html">{{tpl:EntryExcerpt absolute_urls="1" encode_xml="1"}} |
---|
40 | {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}</content> |
---|
41 | |
---|
42 | <tpl:Attachments> |
---|
43 | <link rel="enclosure" href="{{tpl:AttachmentURL}}" |
---|
44 | length="{{tpl:AttachmentSize full="1"}}" type="{{tpl:AttachmentMimeType}}" /> |
---|
45 | </tpl:Attachments> |
---|
46 | |
---|
47 | |
---|
48 | <tpl:EntryIf comments_active="1"> |
---|
49 | <wfw:comment>{{tpl:EntryURL}}#comment-form</wfw:comment> |
---|
50 | <wfw:commentRss>{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}</wfw:commentRss> |
---|
51 | </tpl:EntryIf> |
---|
52 | </entry> |
---|
53 | </tpl:Entries> |
---|
54 | |
---|
55 | </feed> |
---|