client/app/slideshow/slideshow.html
author cavaliet
Fri, 03 Oct 2014 10:38:50 +0200
changeset 2 36ccc573af9a
parent 1 74bbdd739878
child 6 4be9f21f2df1
permissions -rw-r--r--
clean search resource
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>
2
36ccc573af9a clean search resource
cavaliet
parents: 1
diff changeset
     5
    <slide ng-repeat="slide in slideshow.images" active="slide.active">
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
        <div class="row">
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
          <div class="col-md-7 col-md-offset-1">
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
            <img ng-src="{{slide.url}}" style="margin:auto;">
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
          </div>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
          <div class="carousel-caption col-md-3">
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/>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
            <h4 class="original-text">{{slide.title}}</h4>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
            <p class="original-text">{{slide.description}}</p>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
          </div>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
      </slide>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
  </carousel>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
</div>