Class: Locomotive::Steam::Middlewares::Sitemap

Inherits:
ThreadSafe
  • Object
show all
Includes:
Helpers
Defined in:
lib/locomotive/steam/middlewares/sitemap.rb

Instance Attribute Summary

Attributes inherited from ThreadSafe

#env

Instance Method Summary collapse

Methods included from Helpers

#decorate_entry, #default_liquid_context, #default_locale, #html?, #json?, #liquid_assigns, #live_editing?, #locale, #locales, #log, #make_local_path, #modify_path, #mounted_on, #page, #params, #path, #redirect_to, #render_response, #request, #services, #site

Methods inherited from ThreadSafe

#call, #next

Instance Method Details

#_callObject



8
9
10
11
12
# File 'lib/locomotive/steam/middlewares/sitemap.rb', line 8

def _call
  if env['PATH_INFO'] == '/sitemap.xml' && (page.nil? || page.not_found?)
    render_response(build_xml, 200, 'text/plain')
  end
end