You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
849 B
22 lines
849 B
<div class="block latest-books"> |
|
<div class="inside"> |
|
<h3>{{ get_theme_mod('pb_front_page_catalog_title') }}</h3> |
|
<div class="books"> |
|
@foreach( FrontPage::latestBooks( $current_page ) as $book ) |
|
<div class="book"> |
|
<a class="subject" href="">TK</a> |
|
<a class="title" href="{{ $book['link'] }}">{{ $book['metadata']['name'] }}</a> |
|
<a class="read-more" href="{{ $book['link'] }}">{{ __('About this book →', 'aldine') }}</a> |
|
</div> |
|
@endforeach |
|
</div> |
|
<div class="navigation mt2"> |
|
@if($previous_page) |
|
<a class="previous f1" href="{{ network_home_url("/page/$previous_page/") }}">←</a> |
|
@endif |
|
@if($next_page) |
|
<a class="next f1" href="{{ network_home_url("/page/$next_page/") }}">→</a> |
|
@endif |
|
</div> |
|
</div> |
|
</div>
|
|
|