Add missing meta description to profiles, some other SEO stuff (#6706)
- Add missing meta description to profiles - Add canonical rel link to landing page - Remove linebreaks from title tags - Add username to profile title - Add toots/following/followers to profile description tags - Add next/prev rel links to profiles - Do not index follower/following variants of profiles
This commit is contained in:
		@@ -1,7 +1,9 @@
 | 
			
		||||
- content_for :page_title do
 | 
			
		||||
  = display_name(@account)
 | 
			
		||||
  = "#{display_name(@account)} (@#{@account.username})"
 | 
			
		||||
 | 
			
		||||
- content_for :header_tags do
 | 
			
		||||
  %meta{ name: 'description', content: account_description(@account) }/
 | 
			
		||||
 | 
			
		||||
  - if @account.user&.setting_noindex
 | 
			
		||||
    %meta{ name: 'robots', content: 'noindex' }/
 | 
			
		||||
 | 
			
		||||
@@ -9,6 +11,11 @@
 | 
			
		||||
  %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) }/
 | 
			
		||||
 | 
			
		||||
  - if @older_url
 | 
			
		||||
    %link{ rel: 'next', href: @older_url }/
 | 
			
		||||
  - if @newer_url
 | 
			
		||||
    %link{ rel: 'prev', href: @newer_url }/
 | 
			
		||||
 | 
			
		||||
  = opengraph 'og:type', 'profile'
 | 
			
		||||
  = render 'og', account: @account, url: short_account_url(@account, only_path: false)
 | 
			
		||||
 | 
			
		||||
@@ -42,6 +49,6 @@
 | 
			
		||||
  - 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'
 | 
			
		||||
        = link_to safe_join([fa_icon('chevron-left'), t('pagination.older')], ' '), @older_url, class: 'older', rel: 'next'
 | 
			
		||||
      - if @newer_url
 | 
			
		||||
        = link_to safe_join([t('pagination.newer'), fa_icon('chevron-right')], ' '), @newer_url, class: 'newer', rel: 'newer'
 | 
			
		||||
        = link_to safe_join([t('pagination.newer'), fa_icon('chevron-right')], ' '), @newer_url, class: 'newer', rel: 'prev'
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user