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.

29 lines
1.7 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= display_name(status.account)
  12. %span.p-nickname= acct(status.account)
  13. .status__content.e-content.p-name= Formatter.instance.format(status)
  14. - unless status.media_attachments.empty?
  15. .status__attachments
  16. - if status.sensitive?
  17. = render partial: 'stream_entries/content_spoiler'
  18. - if status.media_attachments.first.video?
  19. .video-item
  20. = 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
  21. .video-item__play
  22. = fa_icon('play')
  23. - else
  24. - status.media_attachments.each do |media|
  25. .media-item
  26. = 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'}"