aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/thumbnails.tpl
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-03-09 20:17:00 +0000
committerplegall <plg@piwigo.org>2010-03-09 20:17:00 +0000
commitc9dfb3a41f0341531594de215a25d7cb0091ca56 (patch)
tree3d7ca60026e80650cb47aaadabb38646d5213438 /template/yoga/thumbnails.tpl
parentd63e90c5d022d5b88b66c33972533bab20edcec5 (diff)
feature 1494: move all *.tpl files from template/yoga to the new
template/default (from which yoga derives) git-svn-id: http://piwigo.org/svn/trunk@5095 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/thumbnails.tpl')
-rw-r--r--template/yoga/thumbnails.tpl37
1 files changed, 0 insertions, 37 deletions
diff --git a/template/yoga/thumbnails.tpl b/template/yoga/thumbnails.tpl
deleted file mode 100644
index 1061f77cd..000000000
--- a/template/yoga/thumbnails.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-
-{if !empty($thumbnails)}
-<ul class="thumbnails">
-{foreach from=$thumbnails item=thumbnail}
- <li>
- <span class="wrap1">
- <span class="wrap2">
- <a href="{$thumbnail.URL}">
- <img class="thumbnail" src="{$thumbnail.TN_SRC}" alt="{$thumbnail.TN_ALT}" title="{$thumbnail.TN_TITLE}">
- </a>
- </span>
- <span class="thumbLegend">
- {if isset($thumbnail.NAME)}{$thumbnail.NAME}{/if}
- {if !empty($thumbnail.icon_ts)}
- <img title="{$thumbnail.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent.png" class="icon" alt="(!)">
- {/if}
- {if isset($thumbnail.NB_COMMENTS)}
- <span class="{if 0==$thumbnail.NB_COMMENTS}zero {/if}nb-comments">
- <br>
- {$pwg->l10n_dec('%d comment', '%d comments',$thumbnail.NB_COMMENTS)}
- </span>
- {/if}
-
- {if isset($thumbnail.NB_HITS)}
- <span class="{if 0==$thumbnail.NB_HITS}zero {/if}nb-hits">
- <br>
- {$pwg->l10n_dec('%d hit', '%d hits',$thumbnail.NB_HITS)}
- </span>
- {/if}
- </span>
- </span>
- </li>
-{/foreach}
-</ul>
-{/if}
-
-