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

- if @statuses.empty?
  .accounts-grid
    = render partial: 'nothing_here'
- else
  .activity-stream
    = render partial: 'stream_entries/status', collection: @statuses, as: :status

.pagination
  - if @statuses.size == 20
    = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), account_url(@account, max_id: @statuses.last.id), class: 'next_page', rel: 'next'