2011-04-29 20:10:13 +00:00
|
|
|
module Extensions
|
|
|
|
module Shared
|
|
|
|
module Seo
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2011-08-17 02:23:14 +00:00
|
|
|
localized_field :seo_title
|
|
|
|
localized_field :meta_keywords
|
|
|
|
localized_field :meta_description
|
2011-04-29 20:10:13 +00:00
|
|
|
end
|
2011-06-23 12:57:52 +00:00
|
|
|
|
2011-04-29 20:10:13 +00:00
|
|
|
end # Seo
|
|
|
|
end # Shared
|
|
|
|
end # Extensions
|