about summary refs log tree commit diff
path: root/app/views/accounts/show.html.haml
blob: accad5f781fc98936fb7bf743147fb6fb2e27140 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
- content_for :page_title do
  = display_name(@account)

- content_for :header_tags do
  - if @account.user&.setting_noindex
    %meta{ name: 'robots', content: 'noindex' }/

  %link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
  %link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
  %link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/

  = opengraph 'og:type', 'profile'
  = render 'og', account: @account, url: short_account_url(@account, only_path: false)

- if @account.memorial?
  .memoriam-strip= t('in_memoriam_html')
- elsif @account.moved?
  = render partial: 'moved_strip', locals: { account: @account }
- elsif show_landing_strip?
  = render partial: 'shared/landing_strip', locals: { account: @account }

.h-feed
  %data.p-name{ value: "#{@account.username} on #{site_hostname}" }/

  = render 'header', account: @account

  .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)

  - if @statuses.empty?
    .accounts-grid
      = render 'nothing_here'
  - else
    .activity-stream.with-header
      - if params[:page].to_i.zero?
        = render partial: 'stream_entries/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }

      = render partial: 'stream_entries/status', collection: @statuses, as: :status

  - if @statuses.size == 20
    .pagination
      = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), @next_url, class: 'next', rel: 'next'