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
|
2017-07-14 16:41:02 +02:00
|
|
|
- if @account.user&.setting_noindex
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
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') }/
|
2017-08-13 00:45:04 +02:00
|
|
|
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/
|
2016-02-28 14:41:01 +01:00
|
|
|
|
2017-09-12 05:39:38 +02:00
|
|
|
= opengraph 'og:type', 'profile'
|
2017-05-13 15:56:42 +02:00
|
|
|
= render 'og', account: @account, url: short_account_url(@account, only_path: false)
|
2016-12-09 11:56:27 +01:00
|
|
|
|
2017-11-07 19:06:44 +01:00
|
|
|
- if @account.memorial?
|
|
|
|
.memoriam-strip= t('in_memoriam_html')
|
|
|
|
- elsif 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-08-16 17:12:58 +02: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 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
|
2017-07-24 17:56:50 +02:00
|
|
|
.activity-stream.with-header
|
2017-08-25 01:41:18 +02:00
|
|
|
- if params[:page].to_i.zero?
|
|
|
|
= render partial: 'stream_entries/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
|
|
|
|
2017-01-06 16:08:40 +01:00
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 12:49:34 +01:00
|
|
|
|
2017-07-24 17:56:50 +02:00
|
|
|
- if @statuses.size == 20
|
|
|
|
.pagination
|
2017-08-16 17:12:58 +02:00
|
|
|
= link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), @next_url, class: 'next', rel: 'next'
|