2016-03-10 18:46:07 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>{$pagetitle}</title>
|
|
|
|
<subtitle>Shaared links</subtitle>
|
|
|
|
{if="$show_dates"}
|
|
|
|
<updated>{$last_update}</updated>
|
|
|
|
{/if}
|
|
|
|
<link rel="self" href="{$self_link}#" />
|
2016-12-16 14:03:42 +01:00
|
|
|
<link rel="search" type="application/opensearchdescription+xml" href="{$index_url}?do=opensearch#"
|
|
|
|
title="Shaarli search - {$shaarlititle}" />
|
2016-08-02 11:55:49 +02:00
|
|
|
{loop="$feed_plugins_header"}
|
2016-08-02 11:55:11 +02:00
|
|
|
{$value}
|
|
|
|
{/loop}
|
2016-03-10 18:46:07 +01:00
|
|
|
<author>
|
|
|
|
<name>{$index_url}</name>
|
|
|
|
<uri>{$index_url}</uri>
|
|
|
|
</author>
|
|
|
|
<id>{$index_url}</id>
|
|
|
|
<generator>Shaarli</generator>
|
2016-10-16 17:41:08 +02:00
|
|
|
{loop="$links"}
|
2016-03-10 18:46:07 +01:00
|
|
|
<entry>
|
|
|
|
<title>{$value.title}</title>
|
|
|
|
{if="$usepermalinks"}
|
|
|
|
<link href="{$value.guid}#" />
|
|
|
|
{else}
|
|
|
|
<link href="{$value.url}#" />
|
|
|
|
{/if}
|
|
|
|
<id>{$value.guid}</id>
|
|
|
|
{if="$show_dates"}
|
2016-08-03 09:45:28 +02:00
|
|
|
<published>{$value.pub_iso_date}</published>
|
|
|
|
<updated>{$value.up_iso_date}</updated>
|
2016-03-10 18:46:07 +01:00
|
|
|
{/if}
|
2016-12-02 18:37:41 +01:00
|
|
|
<content type="html" xml:lang="{$language}"><![CDATA[{$value.description}]]></content>
|
2016-03-10 18:46:07 +01:00
|
|
|
{loop="$value.taglist"}
|
|
|
|
<category scheme="{$index_url}?searchtags=" term="{$value|strtolower}" label="{$value}" />
|
|
|
|
{/loop}
|
2016-08-02 11:55:11 +02:00
|
|
|
{loop="$value.feed_plugins"}
|
|
|
|
{$value}
|
|
|
|
{/loop}
|
2016-03-10 18:46:07 +01:00
|
|
|
</entry>
|
|
|
|
{/loop}
|
|
|
|
</feed>
|