diff options
author | Knah Tsaeb <Knah-Tsaeb@knah-tsaeb.org> | 2016-12-07 11:58:25 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-01-05 12:04:02 +0100 |
commit | adc4aee80f7cd3242f65f0b316af2b560a64712c (patch) | |
tree | af62f8bfb21232bc36dd6d12eb5bc2fc35c21146 /tpl/feed.rss.html | |
parent | fc11ab2f290a3712b766d78fdbcd354625a35d0a (diff) | |
download | Shaarli-adc4aee80f7cd3242f65f0b316af2b560a64712c.tar.gz Shaarli-adc4aee80f7cd3242f65f0b316af2b560a64712c.tar.zst Shaarli-adc4aee80f7cd3242f65f0b316af2b560a64712c.zip |
Change templates set through administration UI
Diffstat (limited to 'tpl/feed.rss.html')
-rw-r--r-- | tpl/feed.rss.html | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/tpl/feed.rss.html b/tpl/feed.rss.html deleted file mode 100644 index ee3fef88..00000000 --- a/tpl/feed.rss.html +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
3 | <channel> | ||
4 | <title>{$pagetitle}</title> | ||
5 | <link>{$index_url}</link> | ||
6 | <description>Shaared links</description> | ||
7 | <language>{$language}</language> | ||
8 | <copyright>{$index_url}</copyright> | ||
9 | <generator>Shaarli</generator> | ||
10 | <atom:link rel="self" href="{$self_link}" /> | ||
11 | <atom:link rel="search" type="application/opensearchdescription+xml" href="{$index_url}?do=opensearch#" | ||
12 | title="Shaarli search - {$shaarlititle}" /> | ||
13 | {loop="$feed_plugins_header"} | ||
14 | {$value} | ||
15 | {/loop} | ||
16 | {loop="$links"} | ||
17 | <item> | ||
18 | <title>{$value.title}</title> | ||
19 | <guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid> | ||
20 | {if="$usepermalinks"} | ||
21 | <link>{$value.guid}</link> | ||
22 | {else} | ||
23 | <link>{$value.url}</link> | ||
24 | {/if} | ||
25 | {if="$show_dates"} | ||
26 | <pubDate>{$value.pub_iso_date}</pubDate> | ||
27 | <atom:modified>{$value.up_iso_date}</atom:modified> | ||
28 | {/if} | ||
29 | <description><![CDATA[{$value.description}]]></description> | ||
30 | {loop="$value.taglist"} | ||
31 | <category domain="{$index_url}?searchtags=">{$value}</category> | ||
32 | {/loop} | ||
33 | {loop="$value.feed_plugins"} | ||
34 | {$value} | ||
35 | {/loop} | ||
36 | </item> | ||
37 | {/loop} | ||
38 | </channel> | ||
39 | </rss> | ||