Created
May 31, 2010 20:18
-
-
Save mustardamus/420233 to your computer and use it in GitHub Desktop.
This file contains 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
<% @title = "Create a Micro Chameleon Blog with Sinatra" %> | |
<% @stylesheets = ["article"] %> | |
<% @javascripts = ["article"] %> | |
Content goes here... |
This file contains 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
get "/articles/:article/:stylesheet.css" do | |
content_type "text/css", :charset => "utf-8" | |
less File.read "articles/#{params[:article]}/#{params[:stylesheet]}.less" | |
end | |
get "/articles/:article/:javascript.js" do | |
content_type "text/javascript", :charset => "utf-8" | |
File.read "articles/#{params[:article]}/#{params[:javascript]}.js" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment