@extends('layouts.app') @section('content')
@if(is_active_sidebar('front-page-block')) @php(dynamic_sidebar('front-page-block')) @else @component('page-block') @slot('title') {{ __('About Pressbooks', 'aldine') }} @endslot

{{ __('Pressbooks is easy-to-use book writing software that lets you create a book in all the formats you need to publish.', 'aldine')}}

@slot('button_title') {{ __('Learn More', 'aldine') }} @endslot @slot('button_url') {{ network_home_url('/about/') }} @endslot @endcomponent @endif @if(get_option('pb_front_page_catalog'))

{{ $latest_books_title }}

@foreach($catalog_data['books'] as $book) @include('partials.book', ['book' => $book]) @endforeach
@if($previous_page) @endif @if($next_page <= $catalog_data['pages']) @endif
@endif
@endsection