2018-12-10 00:51:31 +08:00
|
|
|
<a href="{{ $book->getUrl() }}" class="book entity-list-item" data-entity-type="book" data-entity-id="{{$book->id}}">
|
|
|
|
<div class="entity-list-item-image bg-book" style="background-image: url('{{ $book->getBookCover() }}')">
|
2019-02-17 01:13:01 +08:00
|
|
|
@icon('book')
|
2017-08-07 04:08:03 +08:00
|
|
|
</div>
|
2018-12-10 00:51:31 +08:00
|
|
|
<div class="content">
|
|
|
|
<h4 class="entity-list-item-name break-text">{{ $book->name }}</h4>
|
|
|
|
<div class="entity-item-snippet">
|
|
|
|
<p class="text-muted break-text mb-s">{{ $book->getExcerpt() }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|