summaryrefslogtreecommitdiff
path: root/application.rb
blob: b586b04624671262983caa886ac04ed4b9244e96 (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
[ '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 '/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
	header 'Content-Type' => 'text/css; charset=utf-8'
	sass :style
end