aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/feed.rss.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-08-02 11:55:11 +0200
committerArthurHoaro <arthur@hoa.ro>2016-12-20 11:32:15 +0100
commit085efc33cc0cadaed0c01d926604e219e1d44365 (patch)
tree3b5a8bdc8719b8928d7afc6297c46b904ad25584 /tpl/feed.rss.html
parent80677a23e2e10d78bc527e9754286787b453ce61 (diff)
downloadShaarli-085efc33cc0cadaed0c01d926604e219e1d44365.tar.gz
Shaarli-085efc33cc0cadaed0c01d926604e219e1d44365.tar.zst
Shaarli-085efc33cc0cadaed0c01d926604e219e1d44365.zip
Add plugin placeholders in RSS and ATOM feeds templates
Diffstat (limited to 'tpl/feed.rss.html')
-rw-r--r--tpl/feed.rss.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/tpl/feed.rss.html b/tpl/feed.rss.html
index e18dbf9b..66d9a869 100644
--- a/tpl/feed.rss.html
+++ b/tpl/feed.rss.html
@@ -8,10 +8,9 @@
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}
15 {loop="$links"} 14 {loop="$links"}
16 <item> 15 <item>
17 <title>{$value.title}</title> 16 <title>{$value.title}</title>
@@ -29,6 +28,9 @@
29 {loop="$value.taglist"} 28 {loop="$value.taglist"}
30 <category domain="{$index_url}?searchtags=">{$value}</category> 29 <category domain="{$index_url}?searchtags=">{$value}</category>
31 {/loop} 30 {/loop}
31 {loop="$value.feed_plugins"}
32 {$value}
33 {/loop}
32 </item> 34 </item>
33 {/loop} 35 {/loop}
34 </channel> 36 </channel>