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.rss.html | |
parent | c03fd3f2bf90448b05405e5c08ba880c532f52ee (diff) | |
download | Shaarli-e652ba3670a8481eaabb1f8bf721024107abd1e1.tar.gz Shaarli-e652ba3670a8481eaabb1f8bf721024107abd1e1.tar.zst Shaarli-e652ba3670a8481eaabb1f8bf721024107abd1e1.zip |
Keep up with master changeswebdesign
Diffstat (limited to 'tpl/default/feed.rss.html')
-rw-r--r-- | tpl/default/feed.rss.html | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/tpl/default/feed.rss.html b/tpl/default/feed.rss.html index 26de7f19..66d9a869 100644 --- a/tpl/default/feed.rss.html +++ b/tpl/default/feed.rss.html | |||
@@ -8,11 +8,10 @@ | |||
8 | <copyright>{$index_url}</copyright> | 8 | <copyright>{$index_url}</copyright> |
9 | <generator>Shaarli</generator> | 9 | <generator>Shaarli</generator> |
10 | <atom:link rel="self" href="{$self_link}" /> | 10 | <atom:link rel="self" href="{$self_link}" /> |
11 | {if="!empty($pubsubhub_url)"} | 11 | {loop="$plugins_feed_header"} |
12 | <!-- PubSubHubbub Discovery --> | 12 | {$value} |
13 | <atom:link rel="hub" href="{$pubsubhub_url}" /> | 13 | {/loop} |
14 | {/if} | 14 | {loop="$links"} |
15 | {loop="links"} | ||
16 | <item> | 15 | <item> |
17 | <title>{$value.title}</title> | 16 | <title>{$value.title}</title> |
18 | <guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid> | 17 | <guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid> |
@@ -22,12 +21,16 @@ | |||
22 | <link>{$value.url}</link> | 21 | <link>{$value.url}</link> |
23 | {/if} | 22 | {/if} |
24 | {if="$show_dates"} | 23 | {if="$show_dates"} |
25 | <pubDate>{$value.iso_date}</pubDate> | 24 | <pubDate>{$value.pub_iso_date}</pubDate> |
25 | <atom:modified>{$value.up_iso_date}</atom:modified> | ||
26 | {/if} | 26 | {/if} |
27 | <description><![CDATA[{$value.description}]]></description> | 27 | <description><![CDATA[{$value.description}]]></description> |
28 | {loop="$value.taglist"} | 28 | {loop="$value.taglist"} |
29 | <category domain="{$index_url}?searchtags=">{$value}</category> | 29 | <category domain="{$index_url}?searchtags=">{$value}</category> |
30 | {/loop} | 30 | {/loop} |
31 | {loop="$value.feed_plugins"} | ||
32 | {$value} | ||
33 | {/loop} | ||
31 | </item> | 34 | </item> |
32 | {/loop} | 35 | {/loop} |
33 | </channel> | 36 | </channel> |