Teams route
Adding the teams route is rather trivial now - you can probably guess how to do it.
both/router.js
Router.configure({
layoutTemplate: 'layout'
});
Router.route('/', 'games');
Router.route('/teams', 'teams');
Now if you navigate to /teams
by typing it into the URL bar you will see it switches to the teams template.