engine/lib/locomotive/liquid/drops/content.rb

23 lines
462 B
Ruby
Raw Normal View History

module Locomotive
module Liquid
module Drops
class Content < Base
delegate :meta_keywords, :meta_description, :to => "@source"
def before_method(meth)
return '' if @source.nil?
if not @@forbidden_attributes.include?(meth.to_s)
value = @source.send(meth)
end
end
def highlighted_field_value
@source.highlighted_field_value
end
end
end
end
end