You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.9 KiB

  1. .status.light
  2. .status__header
  3. .status__meta
  4. = link_to time_ago_in_words(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'
  5. %data.dt-published{ value: status.created_at.to_time.iso8601 }
  6. = link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
  7. .status__avatar
  8. %div
  9. = image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo'
  10. %span.display-name
  11. %strong.p-name.emojify= display_name(status.account)
  12. %span.p-nickname= acct(status.account)
  13. .status__content.e-content.p-name.emojify<
  14. - if status.spoiler_text?
  15. %p{ style: 'margin-bottom: 0' }<
  16. %span>= "#{status.spoiler_text} "
  17. %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
  18. %div{ style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
  19. - unless status.media_attachments.empty?
  20. .status__attachments
  21. - if status.sensitive?
  22. = render partial: 'stream_entries/content_spoiler'
  23. - if status.media_attachments.first.video?
  24. .status__attachments__inner
  25. .video-item
  26. = 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
  27. .video-item__play
  28. = fa_icon('play')
  29. - else
  30. .status__attachments__inner
  31. - status.media_attachments.each do |media|
  32. = render partial: 'stream_entries/media', locals: { media: media }