2019-07-07 14:16:51 +00:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('statuses.title', name: display_name(@account), quote: truncate(@status.spoiler_text.presence || @status.text, length: 50, omission: '…', escape: false))
|
|
|
|
|
|
|
|
- content_for :header_tags do
|
2022-10-20 12:35:29 +00:00
|
|
|
- if @account.user_prefers_noindex?
|
2019-07-28 11:46:04 +00:00
|
|
|
%meta{ name: 'robots', content: 'noindex, noarchive' }/
|
2019-07-07 14:16:51 +00:00
|
|
|
|
|
|
|
%link{ rel: 'alternate', type: 'application/json+oembed', href: api_oembed_url(url: short_account_status_url(@account, @status), format: 'json') }/
|
|
|
|
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@status) }/
|
|
|
|
|
|
|
|
= opengraph 'og:site_name', site_title
|
|
|
|
= opengraph 'og:type', 'article'
|
2020-02-03 17:44:54 +00:00
|
|
|
= opengraph 'og:title', "#{display_name(@account)} (#{acct(@account)})"
|
2019-07-07 14:16:51 +00:00
|
|
|
= opengraph 'og:url', short_account_status_url(@account, @status)
|
2020-09-24 21:32:13 +00:00
|
|
|
= opengraph 'og:published_time', @status.created_at.iso8601
|
2022-11-27 19:45:28 +00:00
|
|
|
= opengraph 'profile:username', acct(@account)[1..-1]
|
2019-07-07 14:16:51 +00:00
|
|
|
|
|
|
|
= render 'og_description', activity: @status
|
|
|
|
= render 'og_image', activity: @status, account: @account
|
|
|
|
|
2022-10-06 00:26:34 +00:00
|
|
|
= render 'shared/web_app'
|