Created
May 31, 2010 23:30
-
-
Save mustardamus/420382 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
ARTICLES = [ | |
{ :title => "Create a Micro Chameleon Blog with Sinatra", :url => "create_a_micro_chameleon_blog_with_sinatra", :created => Time.parse("05/31/2010") } | |
] |
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
get "/" do | |
params[:article] = ARTICLES[0][:url] | |
erb File.read "articles/#{ARTICLES[0][:url]}/article.erb" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment