2010-06-21 15:46:17 +00:00
|
|
|
module Locomotive
|
|
|
|
module Liquid
|
|
|
|
module Drops
|
|
|
|
class Page < Base
|
|
|
|
|
2010-06-24 09:14:08 +00:00
|
|
|
liquid_attributes << :title
|
2010-06-21 15:46:17 +00:00
|
|
|
|
|
|
|
def children
|
|
|
|
@children ||= liquify(*@source.children)
|
|
|
|
end
|
|
|
|
|
2010-06-24 09:14:08 +00:00
|
|
|
def fullpath
|
|
|
|
@fullpath ||= @source.fullpath
|
|
|
|
end
|
|
|
|
|
2010-06-21 15:46:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|