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