mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 17:53:41 +01:00
13 lines
311 B
Text
13 lines
311 B
Text
- content_for :page_title do
|
|
People who follow
|
|
= display_name(@account)
|
|
|
|
= render partial: 'header'
|
|
|
|
.accounts-grid
|
|
- if @followers.empty?
|
|
= render partial: 'nothing_here'
|
|
- else
|
|
= render partial: 'grid_card', collection: @followers, as: :account
|
|
|
|
= will_paginate @followers, pagination_options
|