2016-03-19 12:49:34 +01:00
|
|
|
- content_for :page_title do
|
2020-02-03 18:44:54 +01:00
|
|
|
= "#{display_name(@account)} (#{acct(@account)})"
|
2016-03-19 12:49:34 +01:00
|
|
|
|
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
|
2019-07-28 13:46:04 +02:00
|
|
|
%meta{ name: 'robots', content: 'noindex, noarchive' }/
|
2017-07-14 16:41:02 +02:00
|
|
|
|
2019-08-18 20:54:36 +02:00
|
|
|
%link{ rel: 'alternate', type: 'application/rss+xml', href: @rss_url }/
|
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)
|
|
|
|
|
2019-04-07 04:59:13 +02:00
|
|
|
- if user_signed_in? && @account.blocking?(current_account)
|
|
|
|
.nothing-here.nothing-here--under-tabs= t('accounts.unavailable')
|
|
|
|
- elsif @statuses.empty?
|
2018-07-28 19:25:33 +02:00
|
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
|
|
- else
|
2019-06-08 10:23:41 +02:00
|
|
|
.activity-stream.activity-stream--under-tabs
|
2018-07-28 19:25:33 +02:00
|
|
|
- if params[:page].to_i.zero?
|
2019-07-07 16:16:51 +02:00
|
|
|
= render partial: 'statuses/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
2018-07-28 19:25:33 +02:00
|
|
|
|
|
|
|
- if @newer_url
|
2020-11-04 21:15:45 +01:00
|
|
|
.entry= link_to_newer @newer_url
|
2018-07-28 19:25:33 +02:00
|
|
|
|
2019-07-07 16:16:51 +02:00
|
|
|
= render partial: 'statuses/status', collection: @statuses, as: :status
|
2018-07-28 19:25:33 +02:00
|
|
|
|
|
|
|
- if @older_url
|
2020-11-04 21:15:45 +01:00
|
|
|
.entry= link_to_older @older_url
|
2018-07-28 19:25:33 +02:00
|
|
|
|
|
|
|
.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
|
|
|
|
2019-08-17 18:07:52 +02:00
|
|
|
- if @endorsed_accounts.empty? && @account.id == current_account&.id
|
|
|
|
.placeholder-widget= t('accounts.endorsements_hint')
|
|
|
|
- elsif !@endorsed_accounts.empty?
|
2018-08-09 09:56:53 +02:00
|
|
|
.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-08-17 18:07:52 +02:00
|
|
|
- if @featured_hashtags.empty? && @account.id == current_account&.id
|
|
|
|
.placeholder-widget
|
|
|
|
= t('accounts.featured_tags_hint')
|
|
|
|
= link_to settings_featured_tags_path do
|
|
|
|
= t('featured_tags.add_new')
|
|
|
|
= fa_icon 'chevron-right fw'
|
|
|
|
- else
|
|
|
|
- @featured_hashtags.each do |featured_tag|
|
|
|
|
.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.formatted{ datetime: featured_tag.last_status_at.iso8601, title: l(featured_tag.last_status_at) }= l featured_tag.last_status_at
|
2021-07-07 21:13:08 +02:00
|
|
|
.trends__item__current= friendly_number_to_human featured_tag.statuses_count
|
2019-02-04 04:25:59 +01:00
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
= render 'application/sidebar'
|