This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-19 04:49:34 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= display_name(@account)
|
|
|
|
|
2016-02-28 05:41:01 -08:00
|
|
|
- content_for :header_tags do
|
2016-02-29 10:42:08 -08: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 05:41:01 -08:00
|
|
|
|
2016-03-19 06:02:30 -07:00
|
|
|
= render partial: 'header'
|
2016-03-19 04:49:34 -07:00
|
|
|
|
2016-03-21 09:18:30 -07:00
|
|
|
- if @statuses.empty?
|
|
|
|
.accounts-grid
|
|
|
|
= render partial: 'nothing_here'
|
|
|
|
- else
|
|
|
|
.activity-stream
|
2016-11-09 16:19:04 -08:00
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 04:49:34 -07:00
|
|
|
|
2016-03-19 06:02:30 -07:00
|
|
|
= will_paginate @statuses, pagination_options
|