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/export.bookmarks.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/export.bookmarks.html')
-rw-r--r-- | tpl/export.bookmarks.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/export.bookmarks.html b/tpl/export.bookmarks.html index da733257..127a5c20 100644 --- a/tpl/export.bookmarks.html +++ b/tpl/export.bookmarks.html | |||
@@ -5,6 +5,6 @@ | |||
5 | Do Not Edit! -->{ignore}The RainTPL loop is formatted to avoid generating extra newlines{/ignore} | 5 | Do Not Edit! -->{ignore}The RainTPL loop is formatted to avoid generating extra newlines{/ignore} |
6 | <TITLE>{$pagetitle}</TITLE> | 6 | <TITLE>{$pagetitle}</TITLE> |
7 | <H1>Shaarli export of {$selection} bookmarks on {$date}</H1> | 7 | <H1>Shaarli export of {$selection} bookmarks on {$date}</H1> |
8 | <DL><p>{loop="links"} | 8 | <DL><p>{loop="$links"} |
9 | <DT><A HREF="{$value.url}" ADD_DATE="{$value.timestamp}" PRIVATE="{$value.private}" TAGS="{$value.taglist}">{$value.title}</A>{if="$value.description"}{$eol}<DD>{$value.description}{/if}{/loop} | 9 | <DT><A HREF="{$value.url}" ADD_DATE="{$value.timestamp}" PRIVATE="{$value.private}" TAGS="{$value.taglist}">{$value.title}</A>{if="$value.description"}{$eol}<DD>{$value.description}{/if}{/loop} |
10 | </DL><p> | 10 | </DL><p> |