-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.rb
49 lines (36 loc) · 851 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
require 'sinatra'
enable :static
get '/inscricao.' do
redirect "https://docs.google.com/forms/d/14lPJko-tdXubeCcJnaeYhrh-JOuyJLB_0FeMO7n0qrM/viewform"
end
get '/inscricao.' do
redirect "https://docs.google.com/forms/d/14lPJko-tdXubeCcJnaeYhrh-JOuyJLB_0FeMO7n0qrM/viewform"
end
get '/calendario' do
slim :calendario, :layout => true
end
get '/regimento' do
redirect "/sobre#regimento"
end
get '/calendario.' do
slim :calendario, :layout => true
end
get '/' do
@title = "Conselho da Juventude da Cidade"
slim :home
end
get '/sobre' do
slim :sobre, :layout => true
end
get '/o-conselho' do
slim :sobre, :layout => true
end
get '/home' do
slim :home, :layout => true
end
get '/inicio' do
slim :home, :layout => true
end
get '/transparencia' || '/visoes' || '/videos' do
slim :transparencia, :layout => true
end