20230727book-monkey-Erweiterung

This commit is contained in:
2023-07-27 16:15:33 +02:00
parent bdcdd8a6ff
commit fe2cf8f994
27 changed files with 951 additions and 524 deletions

View 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>