29 lines
1 KiB
Text
29 lines
1 KiB
Text
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
- if defined?(reshare) && reshare
|
|
.photo_area
|
|
- if post.is_a?(StatusMessage)
|
|
-if post.photos.size > 0
|
|
.photo-attachments
|
|
- if post.photos.size > 1
|
|
.additional_photo_count
|
|
= "+ #{post.photos.size-1}"
|
|
= image_tag post.first_photo_url(:thumb_large), :class => "stream-photo big-stream-photo"
|
|
|
|
%div{:class => direction_for(post.text)}
|
|
!= post.message.markdownified
|
|
- if post.poll
|
|
= render "status_messages/poll", poll: post.poll
|
|
- if post.o_embed_cache
|
|
!= o_embed_html post.o_embed_cache
|
|
- if post.open_graph_cache
|
|
.opengraph
|
|
%a{href: post.open_graph_cache.url, target: "_blank"}
|
|
%div
|
|
= image_tag post.open_graph_cache.image
|
|
%strong
|
|
= post.open_graph_cache.title
|
|
%p
|
|
= truncate(post.open_graph_cache.description, length: 250, separator: " ")
|