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.

20 lines
868 B

  1. .card{ style: "background-image: url(#{@account.header.url(:medium)})" }
  2. .avatar= image_tag @account.avatar.url(:large)
  3. %h1.name
  4. = display_name(@account)
  5. %small= "@#{@account.username}"
  6. .details
  7. .counter{ class: active_nav_class(account_url(@account)) }
  8. = link_to account_url(@account) do
  9. %span.counter-label Posts
  10. %span.counter-number= @account.statuses.count
  11. .counter{ class: active_nav_class(following_account_url(@account)) }
  12. = link_to following_account_url(@account) do
  13. %span.counter-label Following
  14. %span.counter-number= @account.following.count
  15. .counter{ class: active_nav_class(followers_account_url(@account)) }
  16. = link_to followers_account_url(@account) do
  17. %span.counter-label Followers
  18. %span.counter-number= @account.followers.count
  19. .bio
  20. %p= @account.note