Created
June 6, 2016 02:23
-
-
Save dapicester/3b36362a9fc16c138173eedccafe0bfa to your computer and use it in GitHub Desktop.
Rack fallback for maintenance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'offline' | |
run Sinatra::Application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
get '/' do | |
haml :index | |
end | |
get '/*' do | |
redirect to '/' | |
end | |
__END__ | |
@@ layout | |
%html | |
%head | |
%title Oops | |
%beta | |
= yield | |
@@ index | |
%h1 Oops | |
%p The site is no longer available! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment