2016-12-18 13:47:11 -05:00
|
|
|
.status.light
|
|
|
|
.status__header
|
|
|
|
.status__meta
|
2017-04-21 12:19:59 -04:00
|
|
|
= link_to local_time_ago(status.created_at), TagManager.instance.url_for(status), class: 'status__relative-time u-url u-uid', title: l(status.created_at), target: stream_link_target, rel: 'noopener'
|
2017-01-06 10:08:40 -05:00
|
|
|
%data.dt-published{ value: status.created_at.to_time.iso8601 }
|
2016-12-18 13:47:11 -05:00
|
|
|
|
2017-04-12 10:12:42 -04:00
|
|
|
= link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
|
2016-12-18 13:47:11 -05:00
|
|
|
.status__avatar
|
|
|
|
%div
|
2017-01-06 10:08:40 -05:00
|
|
|
= image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo'
|
2016-12-18 13:47:11 -05:00
|
|
|
%span.display-name
|
2017-01-09 22:40:45 -05:00
|
|
|
%strong.p-name.emojify= display_name(status.account)
|
2017-04-12 14:04:33 -04:00
|
|
|
%span= acct(status.account)
|
2016-12-18 13:47:11 -05:00
|
|
|
|
2017-04-12 14:04:33 -04:00
|
|
|
.status__content.p-name.emojify<
|
2017-04-12 12:24:18 -04:00
|
|
|
- if status.spoiler_text?
|
2017-03-31 07:54:36 -04:00
|
|
|
%p{ style: 'margin-bottom: 0' }<
|
2017-04-12 14:04:33 -04:00
|
|
|
%span.p-summary>= "#{status.spoiler_text} "
|
2017-03-31 07:54:36 -04:00
|
|
|
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
2017-04-21 22:26:25 -04:00
|
|
|
%div.e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
|
2016-12-18 13:47:11 -05:00
|
|
|
|
|
|
|
- unless status.media_attachments.empty?
|
|
|
|
.status__attachments
|
|
|
|
- if status.sensitive?
|
|
|
|
= render partial: 'stream_entries/content_spoiler'
|
|
|
|
- if status.media_attachments.first.video?
|
2017-03-04 16:17:10 -05:00
|
|
|
.status__attachments__inner
|
|
|
|
.video-item
|
|
|
|
= link_to (status.media_attachments.first.remote_url.blank? ? status.media_attachments.first.file.url(:original) : status.media_attachments.first.remote_url), style: "background-image: url(#{status.media_attachments.first.file.url(:small)})", target: '_blank', rel: 'noopener', class: 'u-video' do
|
|
|
|
.video-item__play
|
|
|
|
= fa_icon('play')
|
2016-12-18 13:47:11 -05:00
|
|
|
- else
|
2017-03-04 16:17:10 -05:00
|
|
|
.status__attachments__inner
|
|
|
|
- status.media_attachments.each do |media|
|
|
|
|
= render partial: 'stream_entries/media', locals: { media: media }
|