Landing page template

This commit is contained in:
Piotr Sarnacki 2015-03-25 09:44:29 +01:00
parent 95b8fe485b
commit 439ac1f8ca
3 changed files with 9 additions and 1 deletions

View File

@ -45,7 +45,8 @@ Router.map ->
@route 'first_sync'
@route 'insufficient_oauth_permissions'
@route 'auth', path: '/auth'
@route 'auth'
@route 'home'
@resource 'profile', path: '/profile', ->
@resource 'accounts', path: '/', ->

1
app/templates/home.hbs Normal file
View File

@ -0,0 +1 @@
LANDING PAGE GOES HERE

6
app/views/home.coffee Normal file
View File

@ -0,0 +1,6 @@
`import BasicView from 'travis/views/basic'`
View = BasicView.extend
layoutName: 'layouts/simple'
`export default View`