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