mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 05:54:27 +00:00
15 lines
316 B
Plaintext
15 lines
316 B
Plaintext
- content_for :page_title do
|
|
People who follow
|
|
= display_name(@account)
|
|
|
|
= render partial: 'header'
|
|
|
|
.accounts-grid
|
|
- @followers.each do |f|
|
|
= render partial: 'grid_card', locals: { account: f }
|
|
|
|
- if @followers.empty?
|
|
= render partial: 'nothing_here'
|
|
|
|
= will_paginate @followers, pagination_options
|