Skip to content

Instantly share code, notes, and snippets.

@mustardamus
Created May 31, 2010 20:18
Show Gist options
  • Save mustardamus/420233 to your computer and use it in GitHub Desktop.
Save mustardamus/420233 to your computer and use it in GitHub Desktop.
<% @title = "Create a Micro Chameleon Blog with Sinatra" %>
<% @stylesheets = ["article"] %>
<% @javascripts = ["article"] %>
Content goes here...
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