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
|
2019-07-28 04:46:04 -07:00
|
|
|
%meta{ name: 'robots', content: 'noindex, noarchive' }/
|
2017-07-14 07:41:02 -07:00
|
|
|
|
2018-11-20 13:25:04 -08:00
|
|
|
%link{ rel: 'alternate', type: 'application/rss+xml', href: account_url(@account, format: 'rss') }/
|
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
|
2018-08-26 12:30:53 -07:00
|
|
|
= active_link_to t('accounts.posts_tab_heading'), short_account_url(@account)
|
2018-07-28 10:25:33 -07: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)
|
|
|
|
|
2019-04-06 19:59:13 -07:00
|
|
|
- if user_signed_in? && @account.blocking?(current_account)
|
|
|
|
.nothing-here.nothing-here--under-tabs= t('accounts.unavailable')
|
|
|
|
- elsif @statuses.empty?
|
2018-07-28 10:25:33 -07:00
|
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
|
|
- else
|
2019-06-08 01:23:41 -07:00
|
|
|
.activity-stream.activity-stream--under-tabs
|
2018-07-28 10:25:33 -07:00
|
|
|
- if params[:page].to_i.zero?
|
2019-07-07 07:16:51 -07:00
|
|
|
= render partial: 'statuses/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
2018-07-28 10:25:33 -07:00
|
|
|
|
|
|
|
- if @newer_url
|
|
|
|
.entry= link_to_more @newer_url
|
|
|
|
|
2019-07-07 07:16:51 -07:00
|
|
|
= render partial: 'statuses/status', collection: @statuses, as: :status
|
2018-07-28 10:25:33 -07:00
|
|
|
|
|
|
|
- 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 00:56:53 -07: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
|
|
|
|
|
2019-02-04 15:27:18 -08:00
|
|
|
- @account.featured_tags.order(statuses_count: :desc).each do |featured_tag|
|
2019-02-03 19:25:59 -08:00
|
|
|
.directory__tag{ class: params[:tag] == featured_tag.name ? 'active' : nil }
|
|
|
|
= link_to short_account_tag_path(@account, featured_tag.tag) do
|
|
|
|
%h4
|
|
|
|
= fa_icon 'hashtag'
|
|
|
|
= featured_tag.name
|
|
|
|
%small
|
|
|
|
- if featured_tag.last_status_at.nil?
|
|
|
|
= t('accounts.nothing_here')
|
|
|
|
- else
|
|
|
|
%time{ datetime: featured_tag.last_status_at.iso8601, title: l(featured_tag.last_status_at) }= l featured_tag.last_status_at
|
|
|
|
.trends__item__current= number_to_human featured_tag.statuses_count, strip_insignificant_zeros: true
|
|
|
|
|
2018-07-28 10:25:33 -07:00
|
|
|
= render 'application/sidebar'
|