You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.2 KiB

  1. - content_for :header_tags do
  2. - if @account.user&.setting_noindex
  3. %meta{ name: 'robots', content: 'noindex' }/
  4. %link{ rel: 'alternate', type: 'application/atom+xml', href: account_stream_entry_url(@account, @stream_entry, format: 'atom') }/
  5. %link{ rel: 'alternate', type: 'application/json+oembed', href: api_oembed_url(url: account_stream_entry_url(@account, @stream_entry), format: 'json') }/
  6. %link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@stream_entry.activity) }/
  7. = opengraph 'og:site_name', site_title
  8. = opengraph 'og:type', 'article'
  9. = opengraph 'og:title', "#{@account.username} on #{site_hostname}"
  10. = opengraph 'og:url', account_stream_entry_url(@account, @stream_entry)
  11. = render 'stream_entries/og_description', activity: @stream_entry.activity
  12. = render 'stream_entries/og_image', activity: @stream_entry.activity, account: @account
  13. = opengraph 'twitter:card', 'summary_large_image'
  14. - if show_landing_strip?
  15. = render partial: 'shared/landing_strip', locals: { account: @stream_entry.account }
  16. .activity-stream.activity-stream-headless.h-entry
  17. = render partial: "stream_entries/#{@type}", locals: { @type.to_sym => @stream_entry.activity, include_threads: true }