Skip to content

Commit d137a92

Browse files
committed
Merge pull request #19 from opiepj/bugfix/template-errors
Bugfix/template errors
2 parents b929102 + c04b137 commit d137a92

File tree

5 files changed

+12
-16
lines changed

5 files changed

+12
-16
lines changed

src/app/components/app.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<header>
22
<div layout="row" class="top-nav ac-default-theme">
3-
<img src="angular-shield.png" alt="Angular2" height="54" width="54">
4-
<span class="logo">{{ name | capitalize }} + Patrcik + Webpack</span>
3+
<a href="https://github.com/1337programming/angular2.0-App">
4+
<img src="angularjs-logo_patrick.png" alt="AngularP" height="54" width="54">
5+
</a>
6+
<span class="logo">{{ name | capitalize }} + Patrick + Webpack</span>
57
<ul>
68
<li class="l-left">
79
<a [router-link]=" ['/home'] "class="top-nav-button ac-default-theme">Home</a>
@@ -10,7 +12,13 @@
1012
<a [router-link]=" ['/dashboard'] "class="top-nav-button ac-default-theme">Dashboard</a>
1113
</li>
1214
<li class="l-left">
13-
<a [router-link]=" ['/example-modules', 'search'] "class="top-nav-button ac-default-theme">Example Modules</a>
15+
<a [router-link]=" ['/example-modules', 'search'] "class="top-nav-button ac-default-theme">Modules</a>
16+
</li>
17+
<li class="l-left">
18+
<img src="angular-shield.png" alt="Angular2" height="54" width="54">
19+
</li>
20+
<li class="l-left">
21+
<img src="webpack.png" alt="Webpack" height="54" width="54">
1422
</li>
1523
</ul>
1624
</div>

src/app/components/dashboard/views/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
</style>
66
<div>
77
<h2>Dashboard</h2>
8-
<span x-large>Extra Large Font Directive</span>
8+
<span x-large>This is a useless dashboard!</span>
99
</div>

src/app/components/example-modules/example-modules.html

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,12 @@
99
Search Github
1010
</a>
1111
</li>
12-
<li>
13-
<a class="ac-button md-default-theme"
14-
[router-link]=" ['./timeflies'] "
15-
(click)="active = 1"
16-
[class.active]="active === 1">Timeflies</a>
17-
</li>
1812
<li>
1913
<a class="ac-button md-default-theme"
2014
[router-link]=" ['./tictactoe'] "
2115
(click)="active = 2"
2216
[class.active]="active === 2">Tic tac toe</a>
2317
</li>
24-
<li>
25-
<a class="ac-button md-default-theme"
26-
[router-link]=" ['./draggable_div'] "
27-
(click)="active = 3"
28-
[class.active]="active === 3">Drag Element</a>
29-
</li>
3018
</ul>
3119
</nav>
3220

src/public/angular-shield.png

18.5 KB
Loading

src/public/webpack.png

57.2 KB
Loading

0 commit comments

Comments
 (0)