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