mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
ff44b2e92d
- 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
11 lines
407 B
Plaintext
11 lines
407 B
Plaintext
- content_for :page_title do
|
|
= t('accounts.people_who_follow', name: display_name(@account))
|
|
|
|
- content_for :header_tags do
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
= render 'accounts/og', account: @account, url: account_followers_url(@account, only_path: false)
|
|
|
|
= render 'accounts/header', account: @account
|
|
|
|
= render 'accounts/follow_grid', follows: @follows, accounts: @follows.map(&:account)
|