The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
319 B

  1. - content_for :page_title do
  2. = t('accounts.people_who_follow', name: display_name(@account))
  3. = render partial: 'header'
  4. .accounts-grid
  5. - if @followers.empty?
  6. = render partial: 'nothing_here'
  7. - else
  8. = render partial: 'grid_card', collection: @followers, as: :account, cached: true
  9. = paginate @followers