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
741 B

  1. - content_for :page_title do
  2. = user_signed_in? ? t('accounts.people_followed_by', name: display_name(@account)) : t('accounts.unavailable')
  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 not user_signed_in? || @account.blocking?(current_account)
  8. .nothing-here= t('accounts.unavailable')
  9. - elsif @account.user_hides_network?
  10. .nothing-here= t('accounts.network_hidden')
  11. - elsif @follows.empty?
  12. = nothing_here
  13. - else
  14. .card-grid
  15. = render partial: 'application/card', collection: @follows.map(&:target_account), as: :account
  16. = paginate @follows