2016-03-19 07:49:34 -04:00
|
|
|
- content_for :page_title do
|
2020-02-03 12:44:54 -05:00
|
|
|
= "#{display_name(@account)} (#{acct(@account)})"
|
2016-03-19 07:49:34 -04:00
|
|
|
|
2016-02-28 08:41:01 -05:00
|
|
|
- content_for :header_tags do
|
2022-10-20 08:35:29 -04:00
|
|
|
- if @account.user_prefers_noindex?
|
2019-07-28 07:46:04 -04:00
|
|
|
%meta{ name: 'robots', content: 'noindex, noarchive' }/
|
2017-07-14 10:41:02 -04:00
|
|
|
|
2019-08-18 14:54:36 -04:00
|
|
|
%link{ rel: 'alternate', type: 'application/rss+xml', href: @rss_url }/
|
2017-08-12 18:45:04 -04:00
|
|
|
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/
|
2016-02-28 08:41:01 -05:00
|
|
|
|
2017-09-11 23:39:38 -04:00
|
|
|
= opengraph 'og:type', 'profile'
|
2017-05-13 09:56:42 -04:00
|
|
|
= render 'og', account: @account, url: short_account_url(@account, only_path: false)
|
2016-12-09 05:56:27 -05:00
|
|
|
|
2022-10-20 08:35:29 -04:00
|
|
|
= render partial: 'shared/web_app'
|