diaspora/app/views/templates/status_message.jst
2012-01-07 14:24:27 -08:00

19 lines
775 B
Text

<% if(photos_count > 0) { %>
<div class="photo_attachments">
<a href="#" class="stream-photo-link">
<img src="<%= photos[0].sizes.large %>" class="stream-photo big_stream_photo" data-small-photo="<%= photos[0].sizes.small %>" data-full-photo="<%= photos[0].sizes.large %>" rel="lightbox">
</a>
<% for(photo in photos) {
if(photo == 0){ continue; }
if(photo == 8){ break; } %>
<a href="#" class="stream-photo-link">
<img src="<%= photos[photo].sizes.small %>" class="stream-photo thumb_small" data-small-photo="<%= photos[photo].sizes.small %>" data-full-photo="<%= photos[photo].sizes.large %>" rel="lightbox">
</a>
<% } %>
<% } %>
<%= text %>
<% if(o_embed_cache) { %>
<%= o_embed_cache.posts.data.html %>
<% } %>