2016-03-19 07:49:34 -04:00
|
|
|
- content_for :page_title do
|
|
|
|
= display_name(@account)
|
|
|
|
|
2016-02-28 08:41:01 -05:00
|
|
|
- content_for :header_tags do
|
2016-02-29 13:42:08 -05:00
|
|
|
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
|
|
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
|
2016-02-28 08:41:01 -05:00
|
|
|
|
2016-03-19 09:02:30 -04:00
|
|
|
= render partial: 'header'
|
2016-03-19 07:49:34 -04:00
|
|
|
|
2016-03-21 12:18:30 -04:00
|
|
|
- if @statuses.empty?
|
|
|
|
.accounts-grid
|
|
|
|
= render partial: 'nothing_here'
|
|
|
|
- else
|
|
|
|
.activity-stream
|
2016-09-24 07:40:42 -04:00
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 07:49:34 -04:00
|
|
|
|
2016-03-19 09:02:30 -04:00
|
|
|
= will_paginate @statuses, pagination_options
|