cms/app-client/app/templates/application.hbs
author nowmad@23.1.168.192.in-addr.arpa
Fri, 13 Nov 2015 11:02:22 +0100
changeset 14 10f67f0281e1
parent 10 585ec02908b6
child 16 70e9a764d6d7
permissions -rw-r--r--
move the gulpfile in the cms folder instead of the app - add readme for module and cms
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     1
<div class="container">
10
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     2
  {{link-to 'Corpus' 'index' class='navbar-brand'}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     3
  <ul class="nav nav-tabs">
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     4
    {{#link-to 'first-page' tagName="li"}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     5
      {{link-to 'First Page' 'first-page'}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     6
    {{/link-to}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     7
    {{#link-to 'second-page' tagName="li"}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     8
      {{link-to 'Second Page' 'second-page'}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     9
    {{/link-to}}
585ec02908b6 remove nav bar and introduce tab behavior
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
    10
  </ul>
5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
    11
  {{outlet}}
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
    12
</div>