Skip to content

Instantly share code, notes, and snippets.

@niftydigits
Created February 7, 2011 13:34
Show Gist options
  • Save niftydigits/814365 to your computer and use it in GitHub Desktop.
Save niftydigits/814365 to your computer and use it in GitHub Desktop.
app.get('/blog/view/:id', function(req,res){
articleProvider.findById(req.params.id,
function(error, doc){
res.render('blog_view', {
locals: {
title: 'New Post',
article: doc
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment