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.

19 lines
1.1 KiB

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