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.
2016-03-19 06:02:30 -07:00
|
|
|
- content_for :page_title do
|
2016-11-15 14:56:03 -08:00
|
|
|
= t('accounts.people_followed_by', name: display_name(@account))
|
2016-03-19 06:02:30 -07:00
|
|
|
|
|
|
|
= render partial: 'header'
|
|
|
|
|
|
|
|
.accounts-grid
|
|
|
|
- if @following.empty?
|
|
|
|
= render partial: 'nothing_here'
|
2016-09-24 04:40:42 -07:00
|
|
|
- else
|
2016-11-03 05:28:36 -07:00
|
|
|
= render partial: 'grid_card', collection: @following, as: :account, cached: true
|
2016-03-19 06:02:30 -07:00
|
|
|
|
|
|
|
= will_paginate @following, pagination_options
|