2018-05-17 20:26:51 -04:00
|
|
|
.accounts-grid{ class: accounts.empty? ? 'empty' : '' }
|
2017-04-19 07:52:37 -04:00
|
|
|
- if accounts.empty?
|
2018-05-17 20:26:51 -04:00
|
|
|
= image_tag asset_pack_path('elephant_ui_greeting.svg'), alt: '', role: 'presentational'
|
2017-04-19 07:52:37 -04:00
|
|
|
= render partial: 'accounts/nothing_here'
|
|
|
|
- else
|
2018-04-08 07:40:22 -04:00
|
|
|
= render partial: 'accounts/grid_card', collection: accounts, as: :account, cached: !user_signed_in?
|
2017-04-19 07:52:37 -04:00
|
|
|
|
2017-05-05 22:03:07 -04:00
|
|
|
= paginate follows
|