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

= render partial: 'header'

.accounts-grid
  - if @following.empty?
    = render partial: 'nothing_here'
  - else
    = render partial: 'grid_card', collection: @following, as: :account, cached: true

= will_paginate @following, pagination_options