-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.rb
56 lines (41 loc) · 847 Bytes
/
app.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
require 'sinatra'
enable :static
get '/' do
send_file 'public/index.html'
end
get '/votacao' do
redirect 'http://vote.desafioagorario.com.br'
end
get '/imersao' do
send_file 'public/imersao.html'
end
get '/chegajunto' do
send_file 'public/chegajunto-new.html'
end
get '/desafioagora' do
send_file 'public/desafioagora.html'
end
get '/agora' do
send_file 'public/desafioagora.html'
end
get '/conselhodajuventude' do
send_file 'public/conselho.html'
end
get '/conselho' do
send_file 'public/conselho.html'
end
get '/mapeando' do
send_file 'public/mapeando-new.html'
end
get '/about' do
send_file 'public/sobre-nos.html'
end
get '/saibamais' do
send_file 'public/sobre-nos.html'
end
get '/desconferenciahacker' do
send_file 'public/evento/index.html'
end
get '/hackthona' do
send_file 'public/evento/hackthona.html'
end