Skip to content

Instantly share code, notes, and snippets.

@CreaturePhil
Created February 17, 2015 02:18
Show Gist options
  • Save CreaturePhil/761ade74a92f4d24f14c to your computer and use it in GitHub Desktop.
Save CreaturePhil/761ade74a92f4d24f14c to your computer and use it in GitHub Desktop.
router.get('/', function(req, res) {
Post.find(function(err, posts) {
res.render('index', {
title: 'my Blog!',
posts: posts
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment