- Return all images as og:image - Return videos as og:image (preview) and og:video - Return profile:username on profiles
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1.6 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 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'
 |