diaspora/app/views/templates/status_message.ujs
2012-01-07 14:23:23 -08:00

17 lines
446 B
Text

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