17 lines
494 B
Text
17 lines
494 B
Text
<% if(photos_count > 0) { %>
|
|
<div class="photo_attachments">
|
|
<img src="<%= photos[0].sizes.large %>" class="stream-photo big_stream_photo" data-small-photo="<%= photos[0].sizes.small %>">
|
|
<% 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 %>
|
|
<% } %>
|