Blame view

mustache/app/views/pages/partials/profile/photos.mustache 533 Bytes
5a739853   patrick.he   commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <ul class="ace-thumbnails">
    {{#page.photos}}
    <li>
  	<a href="#" data-rel="colorbox">
  	   <img alt="150x150" src="{{{path.images}}}/gallery/{{thumb}}">
  	   <div class="text">
  		<div class="inner">{{title}}</div>
  	   </div>
  	</a>
  	<div class="tools tools-bottom">
  		<a href="#"><i class="ace-icon fa fa-link"></i></a>
  		<a href="#"><i class="ace-icon fa fa-paperclip"></i></a>
  		<a href="#"><i class="ace-icon fa fa-pencil"></i></a>
  		<a href="#"><i class="ace-icon fa fa-times red"></i></a>
  	</div>
    </li>
    {{/page.photos}}
  </ul>