diff options
Diffstat (limited to 'gallery_views/fixed_grid/fisheye_fixed_grid_inc2.tpl')
| -rwxr-xr-x | gallery_views/fixed_grid/fisheye_fixed_grid_inc2.tpl | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/gallery_views/fixed_grid/fisheye_fixed_grid_inc2.tpl b/gallery_views/fixed_grid/fisheye_fixed_grid_inc2.tpl deleted file mode 100755 index 48ac28c..0000000 --- a/gallery_views/fixed_grid/fisheye_fixed_grid_inc2.tpl +++ /dev/null @@ -1,66 +0,0 @@ -{strip} -{include file="bitpackage:fisheye/gallery_nav.tpl"} -<div class="display fisheye"> - <div class="header"> - {include file="bitpackage:fisheye/gallery_icons_inc.tpl"} - <h1>{$gContent->getTitle()|escape}</h1> - </div> - - {pagination gallery_id=$gContent->mGalleryId ?? 0} - - <div class="body"> - {if !empty($fisheyeSuccess) || !empty($fisheyeErrors) || !empty($fisheyeWarnings) } - {formfeedback success=$fisheyeSuccess error=$fisheyeErrors warning=$fisheyeWarnings} - {/if} - - {include file="bitpackage:liberty/services_inc.tpl" serviceLocation='body' serviceHash=$gContent->mInfo} - {if $gContent->mInfo.data && $gContent->getPreference('show_description') ne 'n'} - <p>{$gContent->mInfo.data|escape}</p> - {/if} - - <table class="thumbnailblock"> - {counter assign="imageCount" start="0" print=false} - {assign var="max" value=100} - {if !empty($cols_per_page) && $cols_per_page > 0}{assign var="tdWidth" value="`$max/$cols_per_page`"}{else}{assign var="tdWidth" value="25"}{assign var="cols_per_page" value="1"}{/if} - {foreach from=$gContent->mItems item=galItem key=itemContentId} - {if $imageCount % $cols_per_page == 0} - <tr > <!-- Begin Image Row --> - {/if} - - <td style="width:{$tdWidth}%; vertical-align:top;"> <!-- Begin Image Cell --> - {box class="box `$galItem->mInfo.content_type_guid`" style="margin-left:0;"} - <a href="{$galItem->getDisplayUrl()|escape}"> - <img class="thumb img-responsive" src="{$galItem->getThumbnailUri($gContent->getField('thumbnail_size'))}" alt="{$galItem->mInfo.title|escape|default:'image'}" /> - </a> - {if $gBitSystem->isFeatureActive( 'fisheye_gallery_list_image_titles' )} - <h2>{$galItem->mInfo.title|escape}</h2> - {/if} - {include file="bitpackage:liberty/services_inc.tpl" serviceLocation='body' serviceHash=$galItem->mInfo type=mini} - {if $gBitSystem->isFeatureActive( 'fisheye_gallery_list_image_descriptions' )} - <p>{$galItem->mInfo.data|truncate:200:"..."|escape}</p> - {/if} - {/box} - </td> <!-- End Image Cell --> - {counter} - - {if $imageCount % $cols_per_page == 0} - </tr> <!-- End Image Row --> - {/if} - - {foreachelse} - <tr><td class="norecords">{tr}This gallery is empty{/tr}. <a href="{$smarty.const.FISHEYE_PKG_URL}upload.php?gallery_id={$gGallery->mGalleryId ?? 0}">Upload pictures!</a></td></tr> - {/foreach} - - {if $imageCount % $cols_per_page != 0}</tr>{/if} - </table> - </div> <!-- end .body --> - - {* pagination *} - - {include file="bitpackage:liberty/services_inc.tpl" serviceLocation='view' serviceHash=$gContent->mInfo} - - {if $gContent->getPreference('allow_comments') eq 'y'} - {include file="bitpackage:liberty/comments.tpl"} - {/if} -</div> <!-- end .fisheye --> -{/strip} |
