20230727book-monkey-Erweiterung
This commit is contained in:
13
src/app/books/book-list-item/book-list-item.component.html
Normal file
13
src/app/books/book-list-item/book-list-item.component.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user