projects
/
examples
/
angular-tour-of-heroes
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
WIP: 6: Get Data from a Server k) Search by name
[examples/angular-tour-of-heroes]
/
dashboard
/
dashboard.component.html
1
<h3>Top Heroes</h3>
2
<div class="grid grid-pad">
3
<a *ngFor="let hero of heroes" class="col-1-4" routerLink="/detail/{{hero.id}}">
4
<div class="module hero">
5
<h4>{{hero.name}}</h4>
6
</div>
7
</a>
8
</div>
9
10
<app-hero-search></app-hero-search>
11