add files for team page

This commit is contained in:
Lisa P 2015-10-29 18:26:41 +01:00
parent d16b655d1c
commit 813998be35
3 changed files with 16 additions and 0 deletions

View File

@ -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: '/', ->

7
app/templates/team.hbs Normal file
View File

@ -0,0 +1,7 @@
<div id="landing" class="landing wrapper">
<section class="section--white">
<div class="inner">
<h1>HEllo team</h1>
</div>
</section>
</div>

8
app/views/team.coffee Normal file
View File

@ -0,0 +1,8 @@
`import BasicView from 'travis/views/basic'`
View = BasicView.extend
classNames: ['landing-pro']
layoutName: 'layouts/landing-page'
`export default View`