summaryrefslogtreecommitdiff
path: root/application.rb
blob: db9d36572a26f0c32adf1793366358824a128333 (plain)
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
[ 'rubygems', 'sinatra', 'haml','sass' ].each do |lib|
	require lib
end

get '/?' do
	haml :index
end

get '/software/?' do
	haml :software
end

get '/services/?' do
	haml :services
end

get '/projects/?' do
	haml :projects
end

get '/publications/?' do
	haml :publications
end

get '/contact/?' do
	haml :contact
end

get '/links/?' do
	haml :links
end

get '/awards/?' do
	haml :awards
end

get '/style.css' do
	#headers 'Content-Type' => 'text/css; charset=utf-8'
	sass :style
end