Feature: add routes

This commit is contained in:
2015-10-27 13:21:04 +00:00
parent ee9cc9b002
commit 4a3a6a5260
5 changed files with 81 additions and 30 deletions

11
routes.js Normal file
View File

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