diff --git a/app/router.coffee b/app/router.coffee index d60e4da4..1b673699 100644 --- a/app/router.coffee +++ b/app/router.coffee @@ -68,6 +68,7 @@ Router.map -> @route 'home-pro', path: '/home-pro' @route 'pricing', path: '/plans' + @route 'team', path: '/about/team' @resource 'profile', path: '/profile', -> @resource 'accounts', path: '/', -> diff --git a/app/templates/team.hbs b/app/templates/team.hbs new file mode 100644 index 00000000..bb3eee57 --- /dev/null +++ b/app/templates/team.hbs @@ -0,0 +1,7 @@ +
+
+
+

HEllo team

+
+
+
\ No newline at end of file diff --git a/app/views/team.coffee b/app/views/team.coffee new file mode 100644 index 00000000..a55ab739 --- /dev/null +++ b/app/views/team.coffee @@ -0,0 +1,8 @@ +`import BasicView from 'travis/views/basic'` + +View = BasicView.extend + + classNames: ['landing-pro'] + layoutName: 'layouts/landing-page' + +`export default View`