How to specify template in KeystoneJS using Handlebars?

I'm trying to set the template/layout for one specific view (not change the default template). Could anyone point me in the right direction? Thanks!

I figured it out.

In the view controller (in my case: routes\views\index.js) you can pass options to the view.render() function.

I changed

view.render('index');

to

view.render('index', {layout:'landing'});

What really threw me though was I needed to restart the application for this to take effect.