13 lines
371 B
HTML
13 lines
371 B
HTML
|
<h1>{{title}}</h1>
|
||
|
<h2>My Heroes</h2>
|
||
|
<ul class="heroes">
|
||
|
<li *ngFor="let hero of heroes"
|
||
|
[class.selected]="hero === selectedHero"
|
||
|
(click)="onSelect(hero)">
|
||
|
<span class="badge">{{hero.id}}</span> {{hero.name}}
|
||
|
</li>
|
||
|
</ul>
|
||
|
<!-- #docregion hero-detail-binding -->
|
||
|
<hero-detail [hero]="selectedHero"></hero-detail>
|
||
|
<!-- #enddocregion hero-detail-binding -->
|