2016-03-19 12:49:34 +01:00
|
|
|
- content_for :page_title do
|
2018-03-18 20:33:07 +01:00
|
|
|
= "#{display_name(@account)} (@#{@account.local_username_and_domain})"
|
2016-03-19 12:49:34 +01:00
|
|
|
|
2016-02-28 14:41:01 +01:00
|
|
|
- content_for :header_tags do
|
2018-03-09 00:35:07 +01:00
|
|
|
%meta{ name: 'description', content: account_description(@account) }/
|
|
|
|
|
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) }/
|
2018-05-10 14:38:19 +02:00
|
|
|
%link{ rel: 'alternate', type: 'application/rss+xml', href: account_url(@account, format: 'rss') }/
|
2016-02-29 19:42:08 +01:00
|
|
|
%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
|
|
|
|
2018-03-09 00:35:07 +01:00
|
|
|
- if @older_url
|
|
|
|
%link{ rel: 'next', href: @older_url }/
|
|
|
|
- if @newer_url
|
|
|
|
%link{ rel: 'prev', href: @newer_url }/
|
|
|
|
|
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
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
|
|
|
|
= render 'header', account: @account, with_bio: true
|
|
|
|
|
|
|
|
.grid
|
|
|
|
.column-0
|
|
|
|
.h-feed
|
|
|
|
%data.p-name{ value: "#{@account.username} on #{site_hostname}" }/
|
|
|
|
|
|
|
|
.account__section-headline
|
2018-08-26 21:30:53 +02:00
|
|
|
= active_link_to t('accounts.posts_tab_heading'), short_account_url(@account)
|
2018-07-28 19:25:33 +02:00
|
|
|
= 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)
|
|
|
|
|
|
|
|
- if @statuses.empty?
|
|
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
|
|
- else
|
|
|
|
.activity-stream
|
|
|
|
- if params[:page].to_i.zero?
|
|
|
|
= render partial: 'stream_entries/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
|
|
|
|
|
|
|
- if @newer_url
|
|
|
|
.entry= link_to_more @newer_url
|
|
|
|
|
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
|
|
|
|
|
|
|
- if @older_url
|
|
|
|
.entry= link_to_more @older_url
|
|
|
|
|
|
|
|
.column-1
|
|
|
|
- if @account.memorial?
|
|
|
|
.memoriam-widget= t('in_memoriam_html')
|
|
|
|
- elsif @account.moved?
|
|
|
|
= render 'moved', account: @account
|
|
|
|
|
|
|
|
= render 'bio', account: @account
|
2018-08-09 09:56:53 +02:00
|
|
|
|
|
|
|
- unless @endorsed_accounts.empty?
|
|
|
|
.endorsements-widget
|
|
|
|
%h4= t 'accounts.choices_html', name: content_tag(:bdi, display_name(@account, custom_emojify: true))
|
|
|
|
|
|
|
|
- @endorsed_accounts.each do |account|
|
|
|
|
= account_link_to account
|
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
= render 'application/sidebar'
|