15 lines
256 B
Ruby
15 lines
256 B
Ruby
module Locomotive
|
|
module Liquid
|
|
module Drops
|
|
class Site < Base
|
|
|
|
liquid_attributes << :name << :meta_keywords << :meta_description
|
|
|
|
def index
|
|
@index ||= @source.pages.index.first
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |