diff options
author | vdigital <vdigital@piwigo.org> | 2008-07-14 21:42:40 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-07-14 21:42:40 +0000 |
commit | df29ffbde72e88635f454d5d6d84c5a7209460f3 (patch) | |
tree | 0a35be2731fe75fe86e11adad6f0147f180956d8 /template-extension/distributed/samples/my-thumbnails.tpl | |
parent | b7709eae0dcb81df9eb668407b64f2cde38ba1f0 (diff) |
Feature template-extension based on 2006 chrisaga's idea.
chrisaga wrote: "If you want to make some template customization without building a brand new
template, you should use ..."
git-svn-id: http://piwigo.org/svn/trunk@2434 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template-extension/distributed/samples/my-thumbnails.tpl')
-rw-r--r-- | template-extension/distributed/samples/my-thumbnails.tpl | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/template-extension/distributed/samples/my-thumbnails.tpl b/template-extension/distributed/samples/my-thumbnails.tpl new file mode 100644 index 000000000..df39ab019 --- /dev/null +++ b/template-extension/distributed/samples/my-thumbnails.tpl @@ -0,0 +1,36 @@ +{* $Id$ *} +<!-- This is a sample of template extensions --> +{if !empty($thumbnails)} +<ul class="thumbnails"> +{foreach from=$thumbnails item=thumbnail} + <li> + <span class="wrap1"> + <span class="wrap2"> + <a href="{$thumbnail.U_IMG_LINK}"> + <img class="thumbnail" src="{$thumbnail.IMAGE}" alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}" /> + </a> + </span> + <span class="thumbLegend" style="color:#F36;"> + © 2008 Piwigo<br /> + {if !empty($thumbnail.ELEMENT_NAME)}{$thumbnail.ELEMENT_NAME}{/if} + {if !empty($thumbnail.IMAGE_TS)}{$thumbnail.IMAGE_TS}{/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}
\ No newline at end of file |