client/app/slideshow/slideshow.html
author cavaliet
Mon, 06 Oct 2014 17:36:47 +0200
changeset 7 e70f1c4785f3
parent 6 4be9f21f2df1
child 8 824c87a9084c
permissions -rw-r--r--
search with new results

<h1>{{ slideshow.title }}</h1>
<p>{{ slideshow.description }}</p>
<div class="carousel-holder row">
  <carousel>
    <slide ng-repeat="slide in slideshow.images" active="slide.active">
        <div class="row">
          <div class="col-md-6 col-md-offset-1">
            <img ng-src="{{slide.url}}" style="margin:auto;">
          </div>
          <div class="carousel-caption col-md-4">
            <slide-editor index="{{$index}}"></slide-editor>
            <hr/>
            <h4 class="original-text">{{ slide.metas|meta:"name" }}</h4>
            <p class="original-text">{{ slide.metas|meta:"description" }}</p>
            <p class="text-right"><a class="btn btn-default" ng-click="h.imgbig=!h.imgbig"><span class="glyphicon glyphicon-eye-open"></span></a></p>
            <div ng-show="h.imgbig">
              <p><small><strong>Classification&nbsp;:</strong> {{ slide.metas|meta:"classification" }}</small></p>
              <p><small><strong>Current Custody&nbsp;:</strong> {{ slide.metas|meta:"currentcustody" }}</small></p>
              <p><small><strong>Former Custody&nbsp;:</strong> {{ slide.metas|meta:"formercustody" }}</small></p>
              <p><small><strong>Mesures&nbsp;:</strong> {{ slide.metas|meta:"measures" }}</small></p>
              <p><small><strong>Acteurs&nbsp;:</strong> {{ slide.metas|meta:"actors" }}</small></p>
              <p><small><strong>Lieux&nbsp;:</strong> {{ slide.metas|meta:"places" }}</small></p>
          </div>
          </div>
      </slide>
  </carousel>
</div>