Skip to content

Instantly share code, notes, and snippets.

@elmarputz
Created March 18, 2019 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elmarputz/2498886d2912c898cb9f27e7d12b159f to your computer and use it in GitHub Desktop.
Save elmarputz/2498886d2912c898cb9f27e7d12b159f to your computer and use it in GitHub Desktop.
book-details
<div class="ui grid" *ngIf="book">
<div class="four wide column">
<img class="ui large image" *ngIf="book.images && book.images[0]"
[src]="book.images[0].url">
</div>
<div class="twelve wide column">
<h1 class="ui header">{{ book.title }}</h1>
<h3 class="ui header">{{ book.subtitle }}</h3>
<div class="ui divider"></div>
<div class="ui grid">
<div class="four wide column">
<h4 class="ui header">Autoren</h4>
<span *ngFor="let author of book.authors; last as l">
{{ author.firstName }} {{ author.lastName }}<span *ngIf="!l">, </span>
</span>
</div>
<div class="four wide column">
<h4 class="ui header">ISBN</h4>
{{ book.isbn }}
</div>
<div class="four wide column">
<h4 class="ui header">Erschienen</h4>
{{ book.published }}
</div>
<div class="four wide column">
<h4 class="ui header">Rating</h4>
<i *ngFor="let r of getRating(book.rating)" class="yellow star icon"></i>
</div>
</div>
</div>
<div class="sixteen wide column">
<h3 class="ui header">Beschreibung</h3>
{{ book.description }}
</div>
<div class="sixteen wide column">
<div class="ui small images">
<img *ngFor="let thumbnail of book.images" [src]="thumbnail.url">
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment