Skip to content

Instantly share code, notes, and snippets.

@mjfreshyfresh
Created September 9, 2010 22:05
Show Gist options
  • Save mjfreshyfresh/572683 to your computer and use it in GitHub Desktop.
Save mjfreshyfresh/572683 to your computer and use it in GitHub Desktop.
config.ru
map '/' do
run CountdownController
end
class CountdownController < Sinatra::Base
get '/' do
@sparse_view = true
session[:is_verified] = true
erb :'countdown/index', :layout => false
end
get '/terms' do
erb :'countdown/terms', :layout => false
end
get '/privacy-policy' do
erb :'countdown/privacy_policy', :layout => false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment