require 'hanami/views/default_template_finder' module Hanami # @api private module Views # The default view that is rendered for non successful responses (200 and 201) # # @since 0.1.0 # @api private class Default include Hanami::View configuration.reset! layout nil root Pathname.new(File.dirname(__FILE__)).join('../templates').realpath template 'default' # @api private def title "#{response[0]} - #{response[2].first || Http::Status.message_for(response[0])}" end # @api private def self.render(root, template_name, context) format = context[:format] template = DefaultTemplateFinder.new(self, root, template_name, format).find if template new(template, context).render else super(context) end end end end end