forked from uniqname/UIDev-substrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage-gallery.html
More file actions
19 lines (18 loc) · 883 Bytes
/
image-gallery.html
File metadata and controls
19 lines (18 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="view-slide-in" data-ng-view="">
<h1>Gallery Title: {{gc.album["gallery-title"]}}</h1>
<!-- Main Image or Active Image -->
<h4 data-ng-show="gc.current.title"><strong>Title: {{gc.current.title}}</strong></h4>
<h3 data-ng-show="gc.current.attribution"><strong>Attribution: {{gc.current.attribution}}</strong></h3>
<p data-ng-show="gc.current.description">Description: {{gc.current.description}}</p>
<img class="active center-block" data-ng-src="{{gc.current.src}}" alt="{{gc.current.description}}"/>
</div>
<hr/>
<div id="thmbs">
<ul id="thmbList">
<li data-ng-repeat="photo in gc.album.photos" >
<a href="#" data-ng-click="gc.setCurrent(photo)">
<img class="thmb center-block" data-ng-src="{{photo.src}}" alt="{{photo.description}}" />
</a>
</li>
</ul>
</div>