Files
ProjectDeployer/routes.js
2015-10-27 13:21:04 +00:00

11 lines
192 B
JavaScript

Router.configure({
layoutTemplate: 'layout' //can be any template name
});
Router.map(function () {
this.route('home', {
path: '/',
});
this.route('management');
});