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.

33 lines
1.8 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: @external_links ? '_blank' : nil, 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: @external_links ? '_blank' : nil, 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. - unless status.spoiler_text.blank?
  15. %p= status.spoiler_text
  16. %div{ style: "direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status)
  17. - unless status.media_attachments.empty?
  18. .status__attachments
  19. - if status.sensitive?
  20. = render partial: 'stream_entries/content_spoiler'
  21. - if status.media_attachments.first.video?
  22. .status__attachments__inner
  23. .video-item
  24. = 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
  25. .video-item__play
  26. = fa_icon('play')
  27. - else
  28. .status__attachments__inner
  29. - status.media_attachments.each do |media|
  30. = render partial: 'stream_entries/media', locals: { media: media }