diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-14 15:52:17 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-02-27 20:01:54 +0100 |
commit | 402b03464812aaec76bc841ca7dacb775baf1e03 (patch) | |
tree | 5f5ce030a71ed1ac327f60911cb22f0ca87d21cd /tpl/default/dailyrss.html | |
parent | 009ce9358168cc06c76fc2f4162829e552e633a3 (diff) | |
download | Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.gz Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.zst Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.zip |
Introduce the new default Shaarli template
Diffstat (limited to 'tpl/default/dailyrss.html')
-rw-r--r-- | tpl/default/dailyrss.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tpl/default/dailyrss.html b/tpl/default/dailyrss.html new file mode 100644 index 00000000..b14a3859 --- /dev/null +++ b/tpl/default/dailyrss.html | |||
@@ -0,0 +1,16 @@ | |||
1 | <item> | ||
2 | <title>{$title} - {function="strftime('%A %e %B %Y', $daydate)"}</title> | ||
3 | <guid>{$absurl}</guid> | ||
4 | <link>{$absurl}</link> | ||
5 | <pubDate>{$rssdate}</pubDate> | ||
6 | <description><![CDATA[ | ||
7 | {loop="links"} | ||
8 | <h3><a href="{$value.url}">{$value.title}</a></h3> | ||
9 | <small>{if="!$hide_timestamps"}{function="strftime('%c', $value.timestamp)"} - {/if}{if="$value.tags"}{$value.tags}{/if}<br> | ||
10 | {$value.url}</small><br> | ||
11 | {if="$value.thumbnail"}{$value.thumbnail}{/if}<br> | ||
12 | {if="$value.description"}{$value.formatedDescription}{/if} | ||
13 | <br><br><hr> | ||
14 | {/loop} | ||
15 | ]]></description> | ||
16 | </item> | ||