pressbooks aldine theme the theme used for the front page or default book
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.
|
|
|
<div class="block latest-books">
|
|
|
|
<div class="inside">
|
|
|
|
<h3>{{ $latest_books_title }}</h3>
|
|
|
|
<div class="books">
|
|
|
|
@foreach( FrontPage::latestBooks( $current_page ) as $book )
|
|
|
|
<div class="book">
|
|
|
|
<a class="subject" href="">Fiction</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>
|
|
|
|
<nav class="navigation mt2" data-total="{{ $total_pages }}">
|
|
|
|
@if($previous_page)
|
|
|
|
<a class="previous f1" data-page="{{ $previous_page }}" href="{{ network_home_url("/page/$previous_page/") }}">←</a>
|
|
|
|
@endif
|
|
|
|
@if($next_page)
|
|
|
|
<a class="next f1" data-page="{{ $next_page }}" href="{{ network_home_url("/page/$next_page/") }}">→</a>
|
|
|
|
@endif
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|