diff options
author | VirtualTam <virtualtam+github@flibidi.net> | 2016-10-17 10:20:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 10:20:50 +0200 |
commit | 209aa96e7e32d810db30d2eb437cef2280c5cad6 (patch) | |
tree | d7bde9c9a66fd2049b4ddb7b02f3c7351504166b /tpl/dailyrss.html | |
parent | 06eec9bf764662cd328627247a1f43e4abd3c5ad (diff) | |
parent | dec5fe9c6973054a1301982f910de86a19502b55 (diff) | |
download | Shaarli-209aa96e7e32d810db30d2eb437cef2280c5cad6.tar.gz Shaarli-209aa96e7e32d810db30d2eb437cef2280c5cad6.tar.zst Shaarli-209aa96e7e32d810db30d2eb437cef2280c5cad6.zip |
Merge pull request #660 from virtualtam/fix/template/loop
Cleanup: explicitely loop over PHP variables in templates
Diffstat (limited to 'tpl/dailyrss.html')
-rw-r--r-- | tpl/dailyrss.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/dailyrss.html b/tpl/dailyrss.html index b14a3859..ddbd6c5e 100644 --- a/tpl/dailyrss.html +++ b/tpl/dailyrss.html | |||
@@ -4,7 +4,7 @@ | |||
4 | <link>{$absurl}</link> | 4 | <link>{$absurl}</link> |
5 | <pubDate>{$rssdate}</pubDate> | 5 | <pubDate>{$rssdate}</pubDate> |
6 | <description><![CDATA[ | 6 | <description><![CDATA[ |
7 | {loop="links"} | 7 | {loop="$links"} |
8 | <h3><a href="{$value.url}">{$value.title}</a></h3> | 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> | 9 | <small>{if="!$hide_timestamps"}{function="strftime('%c', $value.timestamp)"} - {/if}{if="$value.tags"}{$value.tags}{/if}<br> |
10 | {$value.url}</small><br> | 10 | {$value.url}</small><br> |