2017-04-01 01:57:13 +02:00
|
|
|
<h3>Top Heroes</h3>
|
|
|
|
<div class="grid grid-pad">
|
2017-10-30 23:39:58 +01:00
|
|
|
<a *ngFor="let hero of heroes" class="col-1-4"
|
|
|
|
routerLink="/detail/{{hero.id}}">
|
2017-04-01 01:57:13 +02:00
|
|
|
<div class="module hero">
|
|
|
|
<h4>{{hero.name}}</h4>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
2017-10-30 23:39:58 +01:00
|
|
|
|
2017-04-01 01:57:13 +02:00
|
|
|
<hero-search></hero-search>
|