Created
August 17, 2008 21:53
-
-
Save collin/5837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/No, now I <3 Ruby | |
!!! | |
%html | |
%head | |
%link{:rel => :stylesheet, :type => "text/css", :href => "#{params[:name]}.css"} | |
%body | |
=yield |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# static controller | |
get "/:name" do | |
haml params[:name].intern # I love the internet too. | |
end | |
# can't say enough good things about all this stuff. | |
get "/:name.css" do | |
content_type 'text/css', :charset => 'utf-8' | |
sass params[:name].intern | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment