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