This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-19 04:52:37 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('accounts.people_followed_by', name: display_name(@account))
|
|
|
|
|
2017-04-19 08:17:32 -07:00
|
|
|
- content_for :header_tags do
|
2017-07-14 07:41:02 -07:00
|
|
|
- if @account.user&.setting_noindex
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2017-04-22 08:29:46 -07:00
|
|
|
= render 'accounts/og', account: @account, url: account_followers_url(@account, only_path: false)
|
2017-04-19 08:17:32 -07:00
|
|
|
|
2017-04-19 04:52:37 -07:00
|
|
|
= render 'accounts/header', account: @account
|
|
|
|
|
2017-05-05 19:03:07 -07:00
|
|
|
= render 'accounts/follow_grid', follows: @follows, accounts: @follows.map(&:target_account)
|