2015-12-23 09:42:57 -08:00
|
|
|
<!-- #docregion -->
|
|
|
|
<h3>Top Heroes</h3>
|
|
|
|
<div class="grid grid-pad">
|
2016-06-10 09:37:33 -07:00
|
|
|
<!-- #docregion click -->
|
2016-11-03 10:25:01 -07:00
|
|
|
<a *ngFor="let hero of heroes" [routerLink]="['/detail', hero.id]" class="col-1-4">
|
2016-06-10 09:37:33 -07:00
|
|
|
<!-- #enddocregion click -->
|
2016-03-09 01:36:55 +01:00
|
|
|
<div class="module hero">
|
|
|
|
<h4>{{hero.name}}</h4>
|
|
|
|
</div>
|
2016-11-03 10:25:01 -07:00
|
|
|
</a>
|
2015-12-23 09:42:57 -08:00
|
|
|
</div>
|