client/app/slideshow/slideshow.html
author rougeronj
Mon, 23 Mar 2015 12:25:19 +0100
changeset 26 c7dfe7185ef7
parent 8 824c87a9084c
child 39 b714bcbe915c
permissions -rw-r--r--
rename 'gallery' to 'slides' to handle the slides pages
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<h1>{{ slideshow.title }}</h1>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<p>{{ slideshow.description }}</p>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
<div class="carousel-holder row">
1
74bbdd739878 views, path, search...
cavaliet
parents: 0
diff changeset
     4
  <carousel>
8
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
     5
    <slide ng-repeat="slide in slideshow.hits" active="slide.active">
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
        <div class="row">
6
4be9f21f2df1 show/hide texts
cavaliet
parents: 2
diff changeset
     7
          <div class="col-md-6 col-md-offset-1">
8
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
     8
            <img ng-src="{{ slide.metas_dict.images }}" style="margin:auto;">
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
          </div>
6
4be9f21f2df1 show/hide texts
cavaliet
parents: 2
diff changeset
    10
          <div class="carousel-caption col-md-4">
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
            <slide-editor index="{{$index}}"></slide-editor>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
            <hr/>
8
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    13
            <h4 class="original-text">{{ slide.metas_dict.name }}</h4>
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    14
            <p class="original-text">{{ slide.metas_dict.description }}</p>
6
4be9f21f2df1 show/hide texts
cavaliet
parents: 2
diff changeset
    15
            <p class="text-right"><a class="btn btn-default" ng-click="h.imgbig=!h.imgbig"><span class="glyphicon glyphicon-eye-open"></span></a></p>
4be9f21f2df1 show/hide texts
cavaliet
parents: 2
diff changeset
    16
            <div ng-show="h.imgbig">
8
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    17
              <p><small><strong>Classification&nbsp;:</strong> {{ slide.metas_dict.classification }}</small></p>
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    18
              <p><small><strong>Current Custody&nbsp;:</strong> {{ slide.metas_dict.currentcustody }}</small></p>
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    19
              <p><small><strong>Former Custody&nbsp;:</strong> {{ slide.metas_dict.formercustody }}</small></p>
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    20
              <p><small><strong>Mesures&nbsp;:</strong> {{ slide.metas_dict.measures }}</small></p>
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    21
              <p><small><strong>Acteurs&nbsp;:</strong> {{ slide.metas_dict.actors }}</small></p>
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 6
diff changeset
    22
              <p><small><strong>Lieux&nbsp;:</strong> {{ slide.metas_dict.places }}</small></p>
6
4be9f21f2df1 show/hide texts
cavaliet
parents: 2
diff changeset
    23
          </div>
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
          </div>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
      </slide>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
  </carousel>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
</div>