This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-30 14:01:03 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
object @stream_entry
|
|
|
|
|
|
|
|
node(:type) { 'rich' }
|
|
|
|
node(:version) { '1.0' }
|
|
|
|
node(:title, &:title)
|
|
|
|
node(:author_name) { |entry| entry.account.display_name.blank? ? entry.account.username : entry.account.display_name }
|
|
|
|
node(:author_url) { |entry| account_url(entry.account) }
|
2017-04-17 15:16:32 -07:00
|
|
|
node(:provider_name) { site_hostname }
|
2016-11-30 14:01:03 -08:00
|
|
|
node(:provider_url) { root_url }
|
|
|
|
node(:cache_age) { 86_400 }
|
2016-12-18 10:47:11 -08:00
|
|
|
node(:html) { |entry| "<iframe src=\"#{embed_account_stream_entry_url(entry.account, entry)}\" style=\"width: 100%; overflow: hidden\" frameborder=\"0\" width=\"#{@width}\" height=\"#{@height}\" scrolling=\"no\"></iframe>" }
|
2016-11-30 14:01:03 -08:00
|
|
|
node(:width) { @width }
|
2016-12-19 00:12:00 -08:00
|
|
|
node(:height) { @height }
|