logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

show.html.haml (1463B)


  1. - content_for :page_title do
  2. = t('statuses.title', name: display_name(@account), quote: truncate(@stream_entry.activity.spoiler_text.presence || @stream_entry.activity.text, length: 50, omission: '…', escape: false))
  3. - content_for :header_tags do
  4. - if @account.user&.setting_noindex
  5. %meta{ name: 'robots', content: 'noindex' }/
  6. %link{ rel: 'alternate', type: 'application/atom+xml', href: account_stream_entry_url(@account, @stream_entry, format: 'atom') }/
  7. %link{ rel: 'alternate', type: 'application/json+oembed', href: api_oembed_url(url: account_stream_entry_url(@account, @stream_entry), format: 'json') }/
  8. %link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@stream_entry.activity) }/
  9. = opengraph 'og:site_name', site_title
  10. = opengraph 'og:type', 'article'
  11. = opengraph 'og:title', "#{display_name(@account)} (@#{@account.local_username_and_domain})"
  12. = opengraph 'og:url', short_account_status_url(@account, @stream_entry)
  13. = render 'stream_entries/og_description', activity: @stream_entry.activity
  14. = render 'stream_entries/og_image', activity: @stream_entry.activity, account: @account
  15. - if show_landing_strip?
  16. = render partial: 'shared/landing_strip', locals: { account: @stream_entry.account }
  17. .activity-stream.activity-stream-headless.h-entry
  18. = render partial: "stream_entries/#{@type}", locals: { @type.to_sym => @stream_entry.activity, include_threads: true }