2016-03-19 13:49:34 +02:00
|
|
|
- content_for :page_title do
|
|
|
|
= display_name(@account)
|
|
|
|
|
2016-02-28 15:41:01 +02:00
|
|
|
- content_for :header_tags do
|
2017-07-14 17:41:02 +03:00
|
|
|
- if @account.user&.setting_noindex
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2016-02-29 20:42:08 +02:00
|
|
|
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
|
|
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
|
2017-08-13 01:45:04 +03:00
|
|
|
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/
|
2016-02-28 15:41:01 +02:00
|
|
|
|
2017-09-12 06:39:38 +03:00
|
|
|
= opengraph 'og:type', 'profile'
|
2017-05-13 16:56:42 +03:00
|
|
|
= render 'og', account: @account, url: short_account_url(@account, only_path: false)
|
2016-12-09 12:56:27 +02:00
|
|
|
|
2017-11-07 20:06:44 +02:00
|
|
|
- if @account.memorial?
|
|
|
|
.memoriam-strip= t('in_memoriam_html')
|
2017-11-18 20:39:02 +02:00
|
|
|
- elsif @account.moved?
|
|
|
|
= render partial: 'moved_strip', locals: { account: @account }
|
2017-11-07 20:06:44 +02:00
|
|
|
- elsif show_landing_strip?
|
2017-03-20 04:36:29 +02:00
|
|
|
= render partial: 'shared/landing_strip', locals: { account: @account }
|
|
|
|
|
2017-01-06 17:08:40 +02:00
|
|
|
.h-feed
|
2017-04-18 01:16:32 +03:00
|
|
|
%data.p-name{ value: "#{@account.username} on #{site_hostname}" }/
|
2017-01-06 21:15:24 +02:00
|
|
|
|
2017-04-16 17:37:49 +03:00
|
|
|
= render 'header', account: @account
|
2016-03-19 13:49:34 +02:00
|
|
|
|
2017-08-16 18:12:58 +03:00
|
|
|
.activity-stream-tabs
|
|
|
|
= active_link_to t('accounts.posts'), short_account_url(@account)
|
|
|
|
= active_link_to t('accounts.posts_with_replies'), short_account_with_replies_url(@account)
|
|
|
|
= active_link_to t('accounts.media'), short_account_media_url(@account)
|
|
|
|
|
2017-01-06 17:08:40 +02:00
|
|
|
- if @statuses.empty?
|
|
|
|
.accounts-grid
|
2017-04-18 18:15:30 +03:00
|
|
|
= render 'nothing_here'
|
2017-01-06 17:08:40 +02:00
|
|
|
- else
|
2017-07-24 18:56:50 +03:00
|
|
|
.activity-stream.with-header
|
2017-08-25 02:41:18 +03:00
|
|
|
- if params[:page].to_i.zero?
|
|
|
|
= render partial: 'stream_entries/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
|
|
|
|
2017-01-06 17:08:40 +02:00
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 13:49:34 +02:00
|
|
|
|
2017-07-24 18:56:50 +03:00
|
|
|
- if @statuses.size == 20
|
|
|
|
.pagination
|
2017-08-16 18:12:58 +03:00
|
|
|
= link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), @next_url, class: 'next', rel: 'next'
|