unserver-unify
Version:
20 lines • 954 B
HTML
<div class="col-md-12" ng-controller="AppsCtrl as ctrl" class="row">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 padding-left-0" ng-repeat="app in apps">
<div class="tag-box tag-box-v1 box-shadow shadow-effect-2">
<a class="thumbnail" ng-click="ctrl.changeapp(app.name)" style="margin-bottom:0;" href='{{ appUrl }}/{{ app.name.toLowerCase() }}'>
<img ng-if="app.logo" ng-src="{{ AppLogoUrl }}{{ app.logo }} " style="height:100px;" title="{{ app.name }}"/>
<img ng-if="!app.logo" ng-src="{{ _SHOST }}/public/images/{{ app.icon }} " style="height:100px;" title="{{ app.name }}"/>
<div class="caption">
<div class="text-center" style="min-height:40px;">
{{ app.description }}
</div>
<div class="text-center">
<strong>
{{ app.chinesedes }}
</strong>
</div>
</div>
</a>
</div>
</div>
</div>