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
|
2011-07-04 17:40:14 +00:00
|
|
|
|
|
|
|
delegate :seo_title, :meta_keywords, :meta_description, :to => '_source'
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-07-16 20:36:07 +00:00
|
|
|
def title
|
2011-06-21 00:39:59 +00:00
|
|
|
self._source.templatized? ? @context['content_instance'].highlighted_field_value : self._source.title
|
2010-07-16 20:36:07 +00:00
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-07-16 20:36:07 +00:00
|
|
|
def slug
|
2011-06-21 00:39:59 +00:00
|
|
|
self._source.templatized? ? self._source.content_type.slug.singularize : self._source.slug
|
2010-07-16 20:36:07 +00:00
|
|
|
end
|
2011-08-14 08:34:08 +00:00
|
|
|
|
|
|
|
def parent
|
|
|
|
@parent ||= self._source.parent.to_liquid
|
|
|
|
end
|
2011-08-14 08:34:57 +00:00
|
|
|
|
|
|
|
def breadcrumbs
|
|
|
|
@breadcrumbs ||= liquify(*self._source.self_and_ancestors)
|
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-06-21 15:46:17 +00:00
|
|
|
def children
|
2011-06-21 00:39:59 +00:00
|
|
|
@children ||= liquify(*self._source.children)
|
2010-06-21 15:46:17 +00:00
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2010-06-24 09:14:08 +00:00
|
|
|
def fullpath
|
2011-06-21 00:39:59 +00:00
|
|
|
@fullpath ||= self._source.fullpath
|
2010-06-24 09:14:08 +00:00
|
|
|
end
|
2010-07-22 00:18:14 +00:00
|
|
|
|
2011-01-02 22:58:06 +00:00
|
|
|
def depth
|
2011-06-21 00:39:59 +00:00
|
|
|
self._source.depth
|
2011-01-02 22:58:06 +00:00
|
|
|
end
|
|
|
|
|
2010-06-21 15:46:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
end
|