2018-12-09 11:51:31 -05: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-16 12:13:01 -05:00
|
|
|
@icon('book')
|
2017-08-06 16:08:03 -04:00
|
|
|
</div>
|
2018-12-09 11:51:31 -05:00
|
|
|
<div class="content">
|
|
|
|
<h4 class="entity-list-item-name break-text">{{ $book->name }}</h4>
|
|
|
|
<div class="entity-item-snippet">
|
2021-02-12 18:10:30 -05:00
|
|
|
<p class="text-muted break-text mb-s text-limit-lines-1">{{ $book->description }}</p>
|
2018-12-09 11:51:31 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|