Skip to content

Instantly share code, notes, and snippets.

@grantstandridge
Last active August 29, 2015 14:15
Show Gist options
  • Save grantstandridge/9b7e972973f1dcca1f5a to your computer and use it in GitHub Desktop.
Save grantstandridge/9b7e972973f1dcca1f5a to your computer and use it in GitHub Desktop.
var keystone = require('keystone');
exports = module.exports = function(req, res) {
var view = new keystone.View(req, res),
locals = res.locals;
// Set locals
locals.section = 'simplething';
// Render the view
view.render('simplething');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment