]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/feed.atom.html
Move PubSubHubbub code as a default plugin
[github/shaarli/Shaarli.git] / tpl / feed.atom.html
CommitLineData
56e8ea20
A
1<?xml version="1.0" encoding="UTF-8"?>
2<feed xmlns="http://www.w3.org/2005/Atom">
3 <title>{$pagetitle}</title>
4 <subtitle>Shaared links</subtitle>
5 {if="$show_dates"}
6 <updated>{$last_update}</updated>
7 {/if}
8 <link rel="self" href="{$self_link}#" />
db90dfcb 9 {loop="$feed_plugins_header"}
085efc33
A
10 {$value}
11 {/loop}
56e8ea20
A
12 <author>
13 <name>{$index_url}</name>
14 <uri>{$index_url}</uri>
15 </author>
16 <id>{$index_url}</id>
17 <generator>Shaarli</generator>
dec5fe9c 18 {loop="$links"}
56e8ea20
A
19 <entry>
20 <title>{$value.title}</title>
21 {if="$usepermalinks"}
22 <link href="{$value.guid}#" />
23 {else}
24 <link href="{$value.url}#" />
25 {/if}
26 <id>{$value.guid}</id>
27 {if="$show_dates"}
c6d876bb
A
28 <published>{$value.pub_iso_date}</published>
29 <updated>{$value.up_iso_date}</updated>
56e8ea20 30 {/if}
1d2cef8a 31 <content type="html" xml:lang="{$language}"><![CDATA[{$value.description}]]></content>
56e8ea20
A
32 {loop="$value.taglist"}
33 <category scheme="{$index_url}?searchtags=" term="{$value|strtolower}" label="{$value}" />
34 {/loop}
085efc33
A
35 {loop="$value.feed_plugins"}
36 {$value}
37 {/loop}
56e8ea20
A
38 </entry>
39 {/loop}
40</feed>