The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

35 lines
1.8 KiB

  1. .card.h-card.p-author{ style: "background-image: url(#{account.header.url(:original)})" }
  2. - if user_signed_in? && current_account.id != account.id && !current_account.requested?(account)
  3. .controls
  4. - if current_account.following?(account)
  5. = link_to t('accounts.unfollow'), account_unfollow_path(account), data: { method: :post }, class: 'button'
  6. - else
  7. = link_to t('accounts.follow'), account_follow_path(account), data: { method: :post }, class: 'button'
  8. - elsif !user_signed_in?
  9. .controls
  10. .remote-follow
  11. = link_to t('accounts.remote_follow'), account_remote_follow_path(account), class: 'button'
  12. .avatar= image_tag account.avatar.url(:original), class: 'u-photo'
  13. %h1.name
  14. %span.p-name.emojify= display_name(account)
  15. %small
  16. %span @#{account.username}
  17. = fa_icon('lock') if account.locked?
  18. .details
  19. .bio
  20. .account__header__content.p-note.emojify= Formatter.instance.simplified_format(account)
  21. .details-counters
  22. .counter{ class: active_nav_class(short_account_url(account)) }
  23. = link_to short_account_url(account), class: 'u-url u-uid' do
  24. %span.counter-label= t('accounts.posts')
  25. %span.counter-number= number_with_delimiter account.statuses_count
  26. .counter{ class: active_nav_class(account_following_index_url(account)) }
  27. = link_to account_following_index_url(account) do
  28. %span.counter-label= t('accounts.following')
  29. %span.counter-number= number_with_delimiter account.following_count
  30. .counter{ class: active_nav_class(account_followers_url(account)) }
  31. = link_to account_followers_url(account) do
  32. %span.counter-label= t('accounts.followers')
  33. %span.counter-number= number_with_delimiter account.followers_count