mirror of
https://github.com/Febbweiss/ProjectDeployer.git
synced 2026-03-05 06:35:42 +00:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
Router.configure({
|
|
layoutTemplate: 'layout' //can be any template name
|
|
});
|
|
|
|
|
|
Router.map(function () {
|
|
this.route('home', {
|
|
path: '/',
|
|
});
|
|
this.route('management');
|
|
}); |