2019-08-17 06:14:41 +01:00
|
|
|
= render 'accounts/meta', account: @account, newer_url: @newer_url, older_url: @older_url
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
= render 'header', account: @account, with_bio: true
|
|
|
|
|
|
|
|
.grid
|
|
|
|
.column-0
|
|
|
|
.h-feed
|
|
|
|
%data.p-name{ value: "#{@account.username} on #{site_hostname}" }/
|
|
|
|
|
2019-09-17 00:31:30 +01:00
|
|
|
.account-section-headline
|
2020-11-15 18:48:32 +00:00
|
|
|
= active_link_to t('accounts.posts_tab_heading'), "/#{account.username}"
|
2019-07-02 08:10:25 +01:00
|
|
|
= 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 user_signed_in? && @account.blocking?(current_account)
|
|
|
|
.nothing-here.nothing-here--under-tabs= t('accounts.unavailable')
|
|
|
|
- elsif @statuses.empty?
|
|
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
|
|
- else
|
|
|
|
.activity-stream
|
|
|
|
- if params[:page].to_i.zero?
|
2020-11-15 18:48:32 +00:00
|
|
|
= render partial: 'statuses/status', collection: @pinned_statuses, as: :status, locals: { pinned: true }
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
- if @newer_url
|
|
|
|
.entry= link_to_more @newer_url
|
|
|
|
|
2020-11-15 18:48:32 +00:00
|
|
|
= render partial: 'statuses/status', collection: @statuses, as: :status
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
- if @older_url
|
|
|
|
.entry= link_to_more @older_url
|
|
|
|
|
|
|
|
.column-1
|
2020-03-27 22:05:16 +00:00
|
|
|
= render 'bio', account: @account
|