diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-14 15:46:39 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-01-14 15:46:39 +0100 |
commit | e652ba3670a8481eaabb1f8bf721024107abd1e1 (patch) | |
tree | 2368c916ec6316aa68c5a7aea9244fc971ce634e /tpl/default/feed.atom.html | |
parent | c03fd3f2bf90448b05405e5c08ba880c532f52ee (diff) | |
download | Shaarli-webdesign.tar.gz Shaarli-webdesign.tar.zst Shaarli-webdesign.zip |
Keep up with master changeswebdesign
Diffstat (limited to 'tpl/default/feed.atom.html')
-rw-r--r-- | tpl/default/feed.atom.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/tpl/default/feed.atom.html b/tpl/default/feed.atom.html index c8ab1722..29187505 100644 --- a/tpl/default/feed.atom.html +++ b/tpl/default/feed.atom.html | |||
@@ -6,18 +6,16 @@ | |||
6 | <updated>{$last_update}</updated> | 6 | <updated>{$last_update}</updated> |
7 | {/if} | 7 | {/if} |
8 | <link rel="self" href="{$self_link}#" /> | 8 | <link rel="self" href="{$self_link}#" /> |
9 | {if="!empty($pubsubhub_url)"} | 9 | {loop="$plugins_feed_header"} |
10 | <!-- PubSubHubbub Discovery --> | 10 | {$value} |
11 | <link rel="hub" href="{$pubsubhub_url}#" /> | 11 | {/loop} |
12 | <!-- End Of PubSubHubbub Discovery --> | ||
13 | {/if} | ||
14 | <author> | 12 | <author> |
15 | <name>{$index_url}</name> | 13 | <name>{$index_url}</name> |
16 | <uri>{$index_url}</uri> | 14 | <uri>{$index_url}</uri> |
17 | </author> | 15 | </author> |
18 | <id>{$index_url}</id> | 16 | <id>{$index_url}</id> |
19 | <generator>Shaarli</generator> | 17 | <generator>Shaarli</generator> |
20 | {loop="links"} | 18 | {loop="$links"} |
21 | <entry> | 19 | <entry> |
22 | <title>{$value.title}</title> | 20 | <title>{$value.title}</title> |
23 | {if="$usepermalinks"} | 21 | {if="$usepermalinks"} |
@@ -27,12 +25,16 @@ | |||
27 | {/if} | 25 | {/if} |
28 | <id>{$value.guid}</id> | 26 | <id>{$value.guid}</id> |
29 | {if="$show_dates"} | 27 | {if="$show_dates"} |
30 | <updated>{$value.iso_date}</updated> | 28 | <published>{$value.pub_iso_date}</published> |
29 | <updated>{$value.up_iso_date}</updated> | ||
31 | {/if} | 30 | {/if} |
32 | <content type="html" xml:lang="{$language}"><![CDATA[{$value.description}]]></content> | 31 | <content type="html" xml:lang="{$language}"><![CDATA[{$value.description}]]></content> |
33 | {loop="$value.taglist"} | 32 | {loop="$value.taglist"} |
34 | <category scheme="{$index_url}?searchtags=" term="{$value|strtolower}" label="{$value}" /> | 33 | <category scheme="{$index_url}?searchtags=" term="{$value|strtolower}" label="{$value}" /> |
35 | {/loop} | 34 | {/loop} |
35 | {loop="$value.feed_plugins"} | ||
36 | {$value} | ||
37 | {/loop} | ||
36 | </entry> | 38 | </entry> |
37 | {/loop} | 39 | {/loop} |
38 | </feed> | 40 | </feed> |