diff options
author | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
commit | 96a660a21e47d43ebc473ce9d23e712c0e3e1261 (patch) | |
tree | 83f62bba16e51bfd64228b7d12076709bb7273f1 /feed.rss.html | |
download | shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.tar.xz shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.zip |
initil release
Diffstat (limited to 'feed.rss.html')
-rw-r--r-- | feed.rss.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/feed.rss.html b/feed.rss.html new file mode 100644 index 0000000..66d9a86 --- /dev/null +++ b/feed.rss.html @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>{$pagetitle}</title> + <link>{$index_url}</link> + <description>Shaared links</description> + <language>{$language}</language> + <copyright>{$index_url}</copyright> + <generator>Shaarli</generator> + <atom:link rel="self" href="{$self_link}" /> + {loop="$plugins_feed_header"} + {$value} + {/loop} + {loop="$links"} + <item> + <title>{$value.title}</title> + <guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid> + {if="$usepermalinks"} + <link>{$value.guid}</link> + {else} + <link>{$value.url}</link> + {/if} + {if="$show_dates"} + <pubDate>{$value.pub_iso_date}</pubDate> + <atom:modified>{$value.up_iso_date}</atom:modified> + {/if} + <description><![CDATA[{$value.description}]]></description> + {loop="$value.taglist"} + <category domain="{$index_url}?searchtags=">{$value}</category> + {/loop} + {loop="$value.feed_plugins"} + {$value} + {/loop} + </item> + {/loop} + </channel> +</rss> |