module Middleman::Sitemap::Extensions::Proxies::ResourceInstanceMethods

def template?

Returns:
  • (Boolean) -
def template?
  if proxy?
    store.find_resource_by_path(proxied_to).template?
  else
    super
  end
end