mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Use error template for 404 and 500
This commit is contained in:
parent
ecb1999795
commit
dc45fbfad6
1 changed files with 5 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue