engine/lib/locomotive/liquid/drops/page.rb
2010-06-24 11:14:08 +02:00

19 lines
342 B
Ruby

module Locomotive
module Liquid
module Drops
class Page < Base
liquid_attributes << :title
def children
@children ||= liquify(*@source.children)
end
def fullpath
@fullpath ||= @source.fullpath
end
end
end
end
end