about summary refs log tree commit diff
path: root/app/views/accounts/following.html.haml
blob: 6e1ba583c209a992efbca846792bf53abde16d76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- content_for :page_title do
  People whom
  = display_name(@account)
  follows

= render partial: 'header'

.accounts-grid
  - @following.each do |f|
    = render partial: 'grid_card', locals: { account: f }

  - if @following.empty?
    = render partial: 'nothing_here'

= will_paginate @following, pagination_options