2016-03-19 11:49:34 +00:00
|
|
|
- content_for :page_title do
|
|
|
|
= display_name(@account)
|
|
|
|
|
2016-02-28 13:41:01 +00:00
|
|
|
- content_for :header_tags do
|
2016-02-29 18:42:08 +00: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 13:41:01 +00:00
|
|
|
|
2017-04-08 10:15:40 +00:00
|
|
|
%meta{ property: 'og:site_name', content: site_title }/
|
2016-12-09 10:56:27 +00:00
|
|
|
%meta{ property: 'og:type', content: 'profile' }/
|
|
|
|
%meta{ property: 'og:title', content: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/
|
|
|
|
%meta{ property: 'og:description', content: @account.note }/
|
|
|
|
%meta{ property: 'og:image', content: full_asset_url(@account.avatar.url(:original)) }/
|
2016-12-09 11:08:39 +00:00
|
|
|
%meta{ property: 'og:image:width', content: '120' }/
|
|
|
|
%meta{ property: 'og:image:height', content: '120' }/
|
2017-01-05 22:47:40 +00:00
|
|
|
%meta{ property: 'twitter:card', content: 'summary' }/
|
2016-12-09 10:56:27 +00:00
|
|
|
|
2017-03-20 02:36:29 +00:00
|
|
|
- if !user_signed_in? && !Rails.configuration.x.single_user_mode
|
|
|
|
= render partial: 'shared/landing_strip', locals: { account: @account }
|
|
|
|
|
2017-01-06 15:08:40 +00:00
|
|
|
.h-feed
|
2017-01-06 19:15:24 +00:00
|
|
|
%data.p-name{ value: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/
|
|
|
|
|
|
|
|
= render partial: 'header'
|
2016-03-19 11:49:34 +00:00
|
|
|
|
2017-01-06 15:08:40 +00:00
|
|
|
- if @statuses.empty?
|
|
|
|
.accounts-grid
|
|
|
|
= render partial: 'nothing_here'
|
|
|
|
- else
|
|
|
|
.activity-stream
|
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 11:49:34 +00:00
|
|
|
|
2017-01-06 15:08:40 +00:00
|
|
|
.pagination
|
|
|
|
- if @statuses.size == 20
|
2017-04-10 23:11:41 +00: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'
|