UNPKG

unserver-unify

Version:

48 lines (47 loc) 2.16 kB
<div ng-controller="BundleListsCtrl as ctrl"> <div class="col-md-12"> <div class="row margin-bottom-20"> <div class="col-lg-3 col-md-3 col-sm-4 col-xs-6" current-page="setting.currentPage" dir-paginate="bundle in ctrl.bundles | itemsPerPage: ctrl.pageSize" pagination-id="pages" total-items="totalCount"> <div class="thumbnails thumbnail-style thumbnail-multiple thumbnail-kenburn relative" style="cursor: pointer;" ui-sref=".info({bid:bundle._id})"> <div class="thumbnail-img"> <div class="overflow-hidden text-center"> <a> <img alt="{{ bundle.name }}" class="img-responsive" ng-src="{{bundle.photourl }}" style="height:150px" title="{{ bundle.name }}"/> </a> </div> </div> <div class="thumbnail-text"> <div class="caption overflow-hidden clst text-center" style="height:108px"> <div class="clearfix margin-bottom-10"> </div> <h3 class="clamped clamped-2"> <a class="hover-effect" target="_blank"> {{ bundle.name }} </a> </h3> <p class="product_price" ng-if="bundle.price"> <span ng-if="!bundle.finalprice"> {{ctrl.currency}} {{bundle.price}} </span> </p> <p class="clamped clamped-2"> {{ bundle.description }} </p> </div> </div> </div> </div> </div> <div class="row" ng-show="totalCount >ctrl.pageSize"> <div class="col-md-12 forum"> <div class="tag-box tag-box-v6 margin-bottom-20 text-right clearfix"> <dir-pagination-controls boundary-links="true" class="with-others" on-page-change="ctrl.pageChanged(newPageNumber)" pagination-id="list" template-url="components/content/dirPagination.tpl.html"> </dir-pagination-controls> </div> </div> </div> <h3 class="row text-center" ng-if="totalCount == 0" translate=""> No Result! </h3> </div> </div>