Created
March 4, 2014 10:37
-
-
Save robinboehm/9344053 to your computer and use it in GitHub Desktop.
booktemplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2 class="bm-book-title">{{ book.title }}</h2> | |
<h3 class="bm-book-subtitle">{{ book.subtitle }}</h3> | |
<p> | |
<ul> | |
<li class="bm-book-isbn">ISBN: {{ book.isbn }}</li> | |
<li class="bm-book-num-pages">Seiten: {{ book.numPages }}</li> | |
<li class="bm-book-author">Autor: {{ book.author }}</li> | |
<li> | |
Verlag: | |
<a ng-href="{{ book.publisher.url }}" | |
target="_blank" | |
class="bm-book-publisher-name">{{ book.publisher.name }}</a> | |
</li> | |
</ul> | |
</p> | |
<hr> | |
<p class="bm-book-abstract">{{ book.abstract }}</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment