2016-03-19 12:49:34 +01:00
|
|
|
- content_for :page_title do
|
|
|
|
= display_name(@account)
|
|
|
|
|
2016-02-28 14:41:01 +01:00
|
|
|
- content_for :header_tags do
|
2016-02-29 19:42:08 +01: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 14:41:01 +01:00
|
|
|
|
2016-12-09 11:56:27 +01:00
|
|
|
%meta{ property: 'og:type', content: 'profile' }/
|
2017-04-22 17:29:46 +02:00
|
|
|
= render 'og', account: @account, url: account_url(@account, only_path: false)
|
2016-12-09 11:56:27 +01:00
|
|
|
|
2017-04-16 03:40:33 +02:00
|
|
|
- if show_landing_strip?
|
2017-03-20 03:36:29 +01:00
|
|
|
= render partial: 'shared/landing_strip', locals: { account: @account }
|
|
|
|
|
2017-01-06 16:08:40 +01:00
|
|
|
.h-feed
|
2017-04-18 00:16:32 +02:00
|
|
|
%data.p-name{ value: "#{@account.username} on #{site_hostname}" }/
|
2017-01-06 20:15:24 +01:00
|
|
|
|
2017-04-16 16:37:49 +02:00
|
|
|
= render 'header', account: @account
|
2016-03-19 12:49:34 +01:00
|
|
|
|
2017-01-06 16:08:40 +01:00
|
|
|
- if @statuses.empty?
|
|
|
|
.accounts-grid
|
2017-04-18 17:15:30 +02:00
|
|
|
= render 'nothing_here'
|
2017-01-06 16:08:40 +01:00
|
|
|
- else
|
|
|
|
.activity-stream
|
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 12:49:34 +01:00
|
|
|
|
2017-01-06 16:08:40 +01:00
|
|
|
.pagination
|
|
|
|
- if @statuses.size == 20
|
2017-04-11 01:11:41 +02:00
|
|
|
= link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), short_account_url(@account, max_id: @statuses.last.id), class: 'next', rel: 'next'
|