From 813998be35af483da37cae467e0afc33df964a44 Mon Sep 17 00:00:00 2001 From: Lisa P Date: Thu, 29 Oct 2015 18:26:41 +0100 Subject: [PATCH] add files for team page --- app/router.coffee | 1 + app/templates/team.hbs | 7 +++++++ app/views/team.coffee | 8 ++++++++ 3 files changed, 16 insertions(+) create mode 100644 app/templates/team.hbs create mode 100644 app/views/team.coffee 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`