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.

32 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. = 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. .video-item
  23. = 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
  24. .video-item__play
  25. = fa_icon('play')
  26. - else
  27. - status.media_attachments.each do |media|
  28. .media-item
  29. = link_to '', (media.remote_url.blank? ? media.file.url(:original) : media.remote_url), style: "background-image: url(#{media.file.url(:original)})", target: '_blank', rel: 'noopener', class: "u-#{media.video? ? 'video' : 'photo'}"