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.

12 lines
612 B

  1. %div.entry{ class: status.reblog? ? 'entry-reblog' : 'entry-status' }
  2. - if status.reblog?
  3. .pre-header
  4. %i.fa.fa-retweet
  5. Shared by
  6. = link_to status.account.display_name.blank? ? status.account.username : status.account.display_name, (status.account.local? ? profile_url(name: status.account.username) : status.account.url), class: 'name'
  7. .header
  8. = render partial: 'status_header', locals: { status: status.reblog? ? status.reblog : status }
  9. .content
  10. = status.content
  11. .counters
  12. = render partial: 'status_footer', locals: { status: status.reblog? ? status.reblog : status }