c33931b613
* Fix prev/next links on public profile page * Don't make pagination urls if no available statuses * Fix empty check method * Put left chevron before prev page link * Add scope for pagination "starting at" a given id * Status pagination try 2: s/prev/older and s/next/newer "older" on left, "newer" on right Use new scope for "newer" link Extract magic 20 page size to constant Remove max_id from feed pagination as it's not respected * Reinstate max_id for accounts atom stream * normalize
47 lines
1.9 KiB
Text
47 lines
1.9 KiB
Text
- 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 @newer_url || @older_url
|
|
.pagination
|
|
- if @older_url
|
|
= link_to safe_join([fa_icon('chevron-left'), t('pagination.older')], ' '), @older_url, class: 'older', rel: 'older'
|
|
- if @newer_url
|
|
= link_to safe_join([t('pagination.newer'), fa_icon('chevron-right')], ' '), @newer_url, class: 'newer', rel: 'newer'
|