diff options
author | patdenice <patdenice@piwigo.org> | 2012-03-03 18:09:10 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2012-03-03 18:09:10 +0000 |
commit | db7e67ae20c106c0666e3bb143da2502194c25cb (patch) | |
tree | faf1770ec755cdfba7052b0a0cc13bd6b2d9a6f1 /themes/smartpocket/template/mainpage_categories.tpl | |
parent | 5464e7b6979e6ebdfd64dcdae7be86479d3c24ae (diff) |
Multisize and mobile theme.
Use ajax loader for thumbnails in mobile theme.
Use standard square parameters for mobile theme.
Change square parameters to 120px.
git-svn-id: http://piwigo.org/svn/trunk@13472 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/smartpocket/template/mainpage_categories.tpl')
-rw-r--r-- | themes/smartpocket/template/mainpage_categories.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/smartpocket/template/mainpage_categories.tpl b/themes/smartpocket/template/mainpage_categories.tpl index 18485172f..54a99ba4d 100644 --- a/themes/smartpocket/template/mainpage_categories.tpl +++ b/themes/smartpocket/template/mainpage_categories.tpl @@ -1,10 +1,10 @@ -{define_derivative name='derivative_params' width=120 height=120 crop=true}
+{define_derivative name='derivative_params_square' type='square'}
<ul data-role="listview" data-inset="true">
{foreach from=$category_thumbnails item=cat}
<li>
<a href="{$cat.URL}">
- <img src="{$pwg->derivative_url($derivative_params, $cat.representative.src_image)}">
+ <img src="{$pwg->derivative_url($derivative_params_square, $cat.representative.src_image)}">
<h3>{$cat.NAME}</h3>
<p class="Nb_images">{$cat.CAPTION_NB_IMAGES}</p>
</a>
|