zettapi_client
Version:
Admin panel and client-side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project.
10 lines • 618 B
HTML
<div uib-carousel active="active" interval="5000" no-wrap="noWrapSlides" class="headertop" template-url="directives/slider/template.html">
<div uib-slide style="background: url('{{slider.image.filepath}}') center center / cover;" ng-repeat="slider in sliders track by $index"
index="$index">
<div class="carousel-caption" ng-style="slider.carousel_caption_style">
<h2>{{slider.title}}</h2>
<p ng-bind-html="slider.text"></p>
<a ng-if="slider.btntext" ng-attr-target="{{slider.targetlink}}" ng-href="{{slider.btnlink}}" class="btn btn-slide">{{slider.btntext}}</a>
</div>
</div>
</div>