diff --git a/app/components/jumbo.hbs b/app/components/jumbo.hbs index 2d1b1a0..d77c78c 100644 --- a/app/components/jumbo.hbs +++ b/app/components/jumbo.hbs @@ -1,4 +1,4 @@ -
+
{{yield}}
diff --git a/app/components/scrollmenu.hbs b/app/components/scrollmenu.hbs index bdd9794..2dbd98a 100644 --- a/app/components/scrollmenu.hbs +++ b/app/components/scrollmenu.hbs @@ -1,3 +1,5 @@ -
- {{yield}} +
+ {{#if this.args.visible}} + {{yield}} + {{/if}}
diff --git a/app/index.html b/app/index.html index 8a8ad45..be148c8 100644 --- a/app/index.html +++ b/app/index.html @@ -7,6 +7,11 @@ + + + + + {{content-for "book-data"}} {{content-for "head"}} diff --git a/app/router.js b/app/router.js index 5519155..5b46117 100644 --- a/app/router.js +++ b/app/router.js @@ -10,4 +10,9 @@ Router.map(function() { this.route('verse', { path: '/verse/:verse_id' }, function() { this.route('word', { path: '/word/:word_id' }); }); + this.route('home', { path: '/' }); + this.route('contributors'); + this.route('user-guide'); + this.route('site-purpose'); + this.route('contact-us'); }); diff --git a/app/styles/app.scss b/app/styles/app.scss index 8f73f00..a518511 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -7,5 +7,6 @@ #page_header { margin-bottom: 0; - background-image: url("/assets/images/banner_bkg.png"); +/* background-image: url("/assets/images/banner_bkg.png"); */ } + diff --git a/app/templates/application.hbs b/app/templates/application.hbs index cf1c39a..25b5ac7 100644 --- a/app/templates/application.hbs +++ b/app/templates/application.hbs @@ -1,16 +1,68 @@ -
- -

Biblical Resources for Translators

-
- - {{outlet}} -
-