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.

10 lines
328 B

  1. .card
  2. .avatar= image_tag @account.avatar.url(:medium)
  3. .bio
  4. %h1.name
  5. = @account.display_name.blank? ? @account.username : @account.display_name
  6. %small= "@#{@account.username}"
  7. .activity-stream
  8. - @account.statuses.order('id desc').each do |status|
  9. = render partial: 'status', locals: { status: status }