2011-10-30 23:02:41 +00:00
|
|
|
module Locomotive
|
|
|
|
module Extensions
|
|
|
|
module Shared
|
|
|
|
module Seo
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2012-01-25 21:07:10 +00:00
|
|
|
field :seo_title, :type => String, :localize => true
|
|
|
|
field :meta_keywords, :type => String, :localize => true
|
|
|
|
field :meta_description, :type => String, :localize => true
|
2011-10-30 23:02:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end # Seo
|
|
|
|
end # Shared
|
|
|
|
end # Extensions
|
|
|
|
end # Locomotive
|