about summary refs log tree commit diff
path: root/app/views/accounts/following.html.haml
blob: 987dcba1fadf69c71efd1ad358496c9d01e91c01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
- content_for :page_title do
  = t('accounts.people_followed_by', name: display_name(@account))

= render partial: 'header'

.accounts-grid
  - if @following.empty?
    = render partial: 'nothing_here'
  - else
    = render partial: 'grid_card', collection: @following, as: :account, cached: true

= paginate @following