You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
518 B
15 lines
518 B
- content_for :page_title do
|
|
= display_name(@account)
|
|
|
|
- content_for :header_tags do
|
|
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
|
|
|
|
= render partial: 'header'
|
|
|
|
.activity-stream
|
|
- @statuses.each do |status|
|
|
= render partial: 'stream_entries/status', locals: { status: status, include_threads: false, is_successor: false, is_predecessor: false }
|
|
|
|
= will_paginate @statuses, pagination_options
|