14 lines
364 B
HTML
14 lines
364 B
HTML
<div *ngIf="book" class="list-item">
|
|
<img *ngIf="book.thumbnailUrl" [src]="book.thumbnailUrl" alt="Cover" />
|
|
<h2>{{ book.tilte }}</h2>
|
|
<p role="doc-subtitle" *ngIf="book.subtilte">
|
|
{{ book.tilte }}
|
|
</p>
|
|
<ul class="comma-list">
|
|
<li *ngFor="let author of book.authors">
|
|
{{ author }}
|
|
</li>
|
|
</ul>
|
|
<div>ISBN {{ book.isbn }}</div>
|
|
</div>
|