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.
 
 
 
 

19 lines
577 B

  1. - content_for :page_title do
  2. = t('accounts.people_who_follow', name: display_name(@account))
  3. - content_for :header_tags do
  4. %meta{ name: 'robots', content: 'noindex' }/
  5. = render 'accounts/og', account: @account, url: account_followers_url(@account, only_path: false)
  6. = render 'accounts/header', account: @account
  7. - if @account.user_hides_network?
  8. .nothing-here= t('accounts.network_hidden')
  9. - elsif @follows.empty?
  10. = nothing_here
  11. - else
  12. .card-grid
  13. = render partial: 'application/card', collection: @follows.map(&:account), as: :account
  14. = paginate @follows