Use error template for 404 and 500

This commit is contained in:
Omar Roth 2018-02-10 09:15:23 -06:00
parent ecb1999795
commit dc45fbfad6
1 changed files with 5 additions and 3 deletions

View File

@ -269,12 +269,14 @@ get "/search" do |env|
templated "search"
end
get "/:path" do |env|
env.redirect "/"
error 404 do |env|
error_message = "404 Page not found"
templated "error"
end
error 500 do |env|
templated "index"
error_message = "500 Server error"
templated "error"
end
public_folder "assets"