module Owl module CMS module Base extend Sinatra::Extension not_found do # => If 404, let's look for the page somewhere else. end get '*' do |path| path = "/home" if path == '/' render_page(path) end end end end