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.

22 lines
915 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. .bio
  8. %p= @account.note
  9. .details-counters
  10. .counter{ class: active_nav_class(account_url(@account)) }
  11. = link_to account_url(@account) do
  12. %span.counter-label Posts
  13. %span.counter-number= @account.statuses.count
  14. .counter{ class: active_nav_class(following_account_url(@account)) }
  15. = link_to following_account_url(@account) do
  16. %span.counter-label Following
  17. %span.counter-number= @account.following.count
  18. .counter{ class: active_nav_class(followers_account_url(@account)) }
  19. = link_to followers_account_url(@account) do
  20. %span.counter-label Followers
  21. %span.counter-number= @account.followers.count