diff options
author | Eugen <eugen@zeonfederated.com> | 2017-01-06 01:16:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-06 01:16:45 +0100 |
commit | 92bd5f62f6d8bd0e4d5886a9092448d686fb4cfa (patch) | |
tree | f6f69dd3f033911c70649f8e6d2e7c22d3a20a9e /app/views/stream_entries | |
parent | 6917099a6a0b89e20ecb0f54949a49285ab32d5d (diff) | |
parent | 819bfb75c6135d7acd4d5473f47c4e10497dec2b (diff) |
Merge pull request #417 from ineffyble/twitter-card-metadata
Twitter Cards support
Diffstat (limited to 'app/views/stream_entries')
-rw-r--r-- | app/views/stream_entries/show.html.haml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/stream_entries/show.html.haml b/app/views/stream_entries/show.html.haml index 43935da60..d106173d2 100644 --- a/app/views/stream_entries/show.html.haml +++ b/app/views/stream_entries/show.html.haml @@ -14,5 +14,7 @@ %meta{ property: 'og:image:width', content: '120' }/ %meta{ property: 'og:image:height', content: '120' }/ + %meta{ property: 'twitter:card', content: 'summary' }/ + .activity-stream.activity-stream-headless = render partial: @type, locals: { @type.to_sym => @stream_entry.activity, include_threads: true } |