2016-03-19 04:49:34 -07:00
|
|
|
- content_for :page_title do
|
2018-03-18 12:33:07 -07:00
|
|
|
= "#{display_name(@account)} (@#{@account.local_username_and_domain})"
|
2016-03-19 04:49:34 -07:00
|
|
|
|
2016-02-28 05:41:01 -08:00
|
|
|
- content_for :header_tags do
|
2018-03-08 15:35:07 -08:00
|
|
|
%meta{ name: 'description', content: account_description(@account) }/
|
|
|
|
|
2017-07-14 07:41:02 -07:00
|
|
|
- if @account.user&.setting_noindex
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
|
2018-05-10 05:38:19 -07:00
|
|
|
%link{ rel: 'alternate', type: 'application/rss+xml', href: account_url(@account, format: 'rss') }/
|
2016-02-29 10:42:08 -08:00
|
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
|
2017-08-12 15:45:04 -07:00
|
|
|
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/
|
2016-02-28 05:41:01 -08:00
|
|
|
|
2018-03-08 15:35:07 -08:00
|
|
|
- if @older_url
|
|
|
|
%link{ rel: 'next', href: @older_url }/
|
|
|
|
- if @newer_url
|
|
|
|
%link{ rel: 'prev', href: @newer_url }/
|
|
|
|
|
2017-09-11 20:39:38 -07:00
|
|
|
= opengraph 'og:type', 'profile'
|
2017-05-13 06:56:42 -07:00
|
|
|
= render 'og', account: @account, url: short_account_url(@account, only_path: false)
|
2016-12-09 02:56:27 -08:00
|
|
|
|
2018-07-28 10:25:33 -07: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
|
|
|
|
= 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)
|
|
|
|
|
|
|
|
- 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
|
|
|
|
= render 'application/sidebar'
|