16 lines
356 B
Ruby
16 lines
356 B
Ruby
|
module Locomotive
|
||
|
module Extensions
|
||
|
module Shared
|
||
|
module Seo
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
field :seo_title, :type => String
|
||
|
field :meta_keywords, :type => String
|
||
|
field :meta_description, :type => String
|
||
|
end
|
||
|
|
||
|
end # Seo
|
||
|
end # Shared
|
||
|
end # Extensions
|
||
|
end # Locomotive
|