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