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.

22 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. %meta{ property: 'og:site_name', content: site_title }/
  7. %meta{ property: 'og:type', content: 'article' }/
  8. %meta{ property: 'og:title', content: "#{@account.username} on #{site_hostname}" }/
  9. %meta{ property: 'og:url', content: account_stream_entry_url(@account, @stream_entry) }/
  10. = render 'stream_entries/og_description', activity: @stream_entry.activity
  11. = render 'stream_entries/og_image', activity: @stream_entry.activity, account: @account
  12. %meta{ property: 'twitter:card', content: 'summary' }/
  13. - if show_landing_strip?
  14. = render partial: 'shared/landing_strip', locals: { account: @stream_entry.account }
  15. .activity-stream.activity-stream-headless.h-entry
  16. = render partial: "stream_entries/#{@type}", locals: { @type.to_sym => @stream_entry.activity, include_threads: true }