Skip to content

Commit 24171aa

Browse files
committed
feat(app): implement navbar as directive
1 parent aee5983 commit 24171aa

File tree

13 files changed

+30
-12
lines changed

13 files changed

+30
-12
lines changed

app/templates/client/app/account(auth)/login/login(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-include="'components/navbar/navbar.html'"></div>
1+
<navbar></navbar>
22

33
<div class="container">
44
<div class="row">

app/templates/client/app/account(auth)/login/login(jade).jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
div(ng-include='"components/navbar/navbar.html"')
1+
navbar
22
.container
33
.row
44
.col-sm-12

app/templates/client/app/account(auth)/settings/settings(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-include="'components/navbar/navbar.html'"></div>
1+
<navbar></navbar>
22

33
<div class="container">
44
<div class="row">

app/templates/client/app/account(auth)/settings/settings(jade).jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
div(ng-include='"components/navbar/navbar.html"')
1+
navbar
22
.container
33
.row
44
.col-sm-12

app/templates/client/app/account(auth)/signup/signup(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-include="'components/navbar/navbar.html'"></div>
1+
<navbar></navbar>
22

33
<div class="container">
44
<div class="row">

app/templates/client/app/account(auth)/signup/signup(jade).jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
div(ng-include='"components/navbar/navbar.html"')
1+
navbar
22
.container
33
.row
44
.col-sm-12

app/templates/client/app/admin(auth)/admin(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-include="'components/navbar/navbar.html'"></div>
1+
<navbar></navbar>
22

33
<div class="container">
44
<p>The delete user and user index api routes are restricted to users with the 'admin' role.</p>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
div(ng-include='"components/navbar/navbar.html"')
1+
navbar
22
.container
33
p
44
| The delete user and user index api routes are restricted to users with the 'admin' role.
@@ -8,4 +8,4 @@ div(ng-include='"components/navbar/navbar.html"')
88
br
99
span.text-muted {{user.email}}
1010
a.trash(ng-click='delete(user)')
11-
span.glyphicon.glyphicon-trash.pull-right
11+
span.glyphicon.glyphicon-trash.pull-right

app/templates/client/app/main/main(html).html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-include="'components/navbar/navbar.html'"></div>
1+
<navbar></navbar>
22

33
<header class="hero-unit" id="banner">
44
<div class="container">

app/templates/client/app/main/main(jade).jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
div(ng-include='"components/navbar/navbar.html"')
1+
navbar
22

33
header#banner.hero-unit
44
.container
@@ -30,4 +30,4 @@ footer.footer
3030
= ' | '
3131
a(href='https://twitter.com/tyhenkel') @tyhenkel
3232
= ' | '
33-
a(href='https://github.com/DaftMonk/generator-angular-fullstack/issues?state=open') Issues
33+
a(href='https://github.com/DaftMonk/generator-angular-fullstack/issues?state=open') Issues

0 commit comments

Comments
 (0)