about summary refs log tree commit diff
path: root/app/views/accounts/show.html.haml
blob: f994600835d1997fbfd4e6ef9f87d2290ceb3f19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- 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