routes.js 192 B

1234567891011
  1. Router.configure({
  2. layoutTemplate: 'layout' //can be any template name
  3. });
  4. Router.map(function () {
  5. this.route('home', {
  6. path: '/',
  7. });
  8. this.route('management');
  9. });