Guest User

Untitled

a guest
May 27th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. get "/articles/:article" do
  2. article_erb = "articles/#{params[:article]}/article.erb"
  3. File.exist?(article_erb) == true ? erb(File.read(article_erb)) : 404
  4. end
  5.  
  6. error 404 do
  7. erb :fof
  8. end
Add Comment
Please, Sign In to add comment