2010-07-22 00:18:14 +00:00
|
|
|
module Locomotive
|
|
|
|
module Liquid
|
|
|
|
module Drops
|
2010-06-21 15:46:17 +00:00
|
|
|
class Page < Base
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-07-16 20:36:07 +00:00
|
|
|
def title
|
|
|
|
@source.templatized? ? @context['content_instance'].highlighted_field_value : @source.title
|
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-07-16 20:36:07 +00:00
|
|
|
def slug
|
|
|
|
@source.templatized? ? @source.content_type.slug.singularize : @source.slug
|
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-06-21 15:46:17 +00:00
|
|
|
def children
|
|
|
|
@children ||= liquify(*@source.children)
|
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-06-24 09:14:08 +00:00
|
|
|
def fullpath
|
|
|
|
@fullpath ||= @source.fullpath
|
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2011-01-02 22:58:06 +00:00
|
|
|
def depth
|
|
|
|
@source.depth
|
|
|
|
end
|
|
|
|
|
2010-06-21 15:46:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
end
|