* Add meta tags for OGP to following & follow page * simplify render helper * Follow up #2133 * og:type is only accounts/show * revert accounts/{following,followers}
		
			
				
	
	
		
			29 lines
		
	
	
		
			956 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			956 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
- content_for :page_title do
 | 
						|
  = display_name(@account)
 | 
						|
 | 
						|
- content_for :header_tags do
 | 
						|
  %link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
 | 
						|
  %link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
 | 
						|
 | 
						|
  %meta{ property: 'og:type', content: 'profile' }/
 | 
						|
  = render 'og', account: @account
 | 
						|
 | 
						|
- if 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
 | 
						|
 | 
						|
  - if @statuses.empty?
 | 
						|
    .accounts-grid
 | 
						|
      = render 'nothing_here'
 | 
						|
  - else
 | 
						|
    .activity-stream
 | 
						|
      = render partial: 'stream_entries/status', collection: @statuses, as: :status
 | 
						|
 | 
						|
  .pagination
 | 
						|
    - if @statuses.size == 20
 | 
						|
      = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), short_account_url(@account, max_id: @statuses.last.id), class: 'next', rel: 'next'
 |