2016-02-29 18:42:08 +00:00
|
|
|
- content_for :header_tags do
|
|
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_stream_entry_url(@account, @stream_entry, format: 'atom') }/
|
2016-11-30 22:01:03 +00:00
|
|
|
%link{ rel: 'alternate', type: 'application/json+oembed', href: api_oembed_url(url: account_stream_entry_url(@account, @stream_entry), format: 'json') }/
|
|
|
|
|
2016-11-24 17:28:10 +00:00
|
|
|
%meta{ name: 'og:site_name', content: 'Mastodon' }/
|
|
|
|
%meta{ name: 'og:type', content: 'article' }/
|
2016-11-30 22:01:03 +00:00
|
|
|
%meta{ name: 'og:title', content: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/
|
2016-11-24 17:28:10 +00:00
|
|
|
%meta{ name: 'og:article:author', content: @account.username }/
|
2016-11-30 22:01:03 +00:00
|
|
|
%meta{ name: 'og:description', content: @stream_entry.activity.content }/
|
2016-12-04 11:26:12 +00:00
|
|
|
%meta{ name: 'og:image', content: @stream_entry.activity.is_a?(Status) && @stream_entry.activity.media_attachments.size > 0 ? full_asset_url(@stream_entry.activity.media_attachments.first.file.expiring_url(3600, :small)) : full_asset_url(@account.avatar.expiring_url(3600, :original)) }/
|
2016-02-29 18:42:08 +00:00
|
|
|
|
2016-03-06 11:34:39 +00:00
|
|
|
.activity-stream.activity-stream-headless
|
2016-03-21 11:11:27 +00:00
|
|
|
= render partial: @type, locals: { @type.to_sym => @stream_entry.activity, include_threads: true }
|