2016-03-19 20:49:34 +09:00
|
|
|
- content_for :page_title do
|
2018-03-19 04:33:07 +09:00
|
|
|
= "#{display_name(@account)} (@#{@account.local_username_and_domain})"
|
2016-03-19 20:49:34 +09:00
|
|
|
|
2016-02-28 22:41:01 +09:00
|
|
|
- content_for :header_tags do
|
2018-03-09 08:35:07 +09:00
|
|
|
%meta{ name: 'description', content: account_description(@account) }/
|
|
|
|
|
2017-07-14 23:41:02 +09:00
|
|
|
- if @account.user&.setting_noindex
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2016-03-01 03:42:08 +09:00
|
|
|
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
|
2018-05-10 21:38:19 +09:00
|
|
|
%link{ rel: 'alternate', type: 'application/rss+xml', href: account_url(@account, format: 'rss') }/
|
2016-03-01 03:42:08 +09:00
|
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
|
2017-08-13 07:45:04 +09:00
|
|
|
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/
|
2016-02-28 22:41:01 +09:00
|
|
|
|
2018-03-09 08:35:07 +09:00
|
|
|
- if @older_url
|
|
|
|
%link{ rel: 'next', href: @older_url }/
|
|
|
|
- if @newer_url
|
|
|
|
%link{ rel: 'prev', href: @newer_url }/
|
|
|
|
|
2017-09-12 12:39:38 +09:00
|
|
|
= opengraph 'og:type', 'profile'
|
2017-05-13 22:56:42 +09:00
|
|
|
= render 'og', account: @account, url: short_account_url(@account, only_path: false)
|
2016-12-09 19:56:27 +09:00
|
|
|
|
2017-11-08 03:06:44 +09:00
|
|
|
- if @account.memorial?
|
|
|
|
.memoriam-strip= t('in_memoriam_html')
|
2017-11-19 03:39:02 +09:00
|
|
|
- elsif @account.moved?
|
|
|
|
= render partial: 'moved_strip', locals: { account: @account }
|
2017-11-08 03:06:44 +09:00
|
|
|
- elsif show_landing_strip?
|
2017-03-20 11:36:29 +09:00
|
|
|
= render partial: 'shared/landing_strip', locals: { account: @account }
|
|
|
|
|
2017-01-07 00:08:40 +09:00
|
|
|
.h-feed
|
2017-04-18 07:16:32 +09:00
|
|
|
%data.p-name{ value: "#{@account.username} on #{site_hostname}" }/
|
2017-01-07 04:15:24 +09:00
|
|
|
|
2017-04-16 23:37:49 +09:00
|
|
|
= render 'header', account: @account
|
2016-03-19 20:49:34 +09:00
|
|
|
|
2017-08-17 00:12:58 +09: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-07 00:08:40 +09:00
|
|
|
- if @statuses.empty?
|
|
|
|
.accounts-grid
|
2017-04-19 00:15:30 +09:00
|
|
|
= render 'nothing_here'
|
2017-01-07 00:08:40 +09:00
|
|
|
- else
|
2017-07-25 00:56:50 +09:00
|
|
|
.activity-stream.with-header
|
2017-08-25 08:41:18 +09:00
|
|
|
- if params[:page].to_i.zero?
|
|
|
|
= render partial: 'stream_entries/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
|
|
|
|
2017-01-07 00:08:40 +09:00
|
|
|
= render partial: 'stream_entries/status', collection: @statuses, as: :status
|
2016-03-19 20:49:34 +09:00
|
|
|
|
2018-02-26 11:31:28 +09:00
|
|
|
- if @newer_url || @older_url
|
2017-07-25 00:56:50 +09:00
|
|
|
.pagination
|
2018-02-26 11:31:28 +09:00
|
|
|
- if @older_url
|
2018-03-09 08:35:07 +09:00
|
|
|
= link_to safe_join([fa_icon('chevron-left'), t('pagination.older')], ' '), @older_url, class: 'older', rel: 'next'
|
2018-02-26 11:31:28 +09:00
|
|
|
- if @newer_url
|
2018-03-09 08:35:07 +09:00
|
|
|
= link_to safe_join([t('pagination.newer'), fa_icon('chevron-right')], ' '), @newer_url, class: 'newer', rel: 'prev'
|