@extends('layouts.app')
@section('content')
@debug('dump')
@if(is_active_sidebar('home-block-one') && is_active_sidebar('home-block-two'))
@endif
@if(is_active_sidebar('home-block-one'))
@php(dynamic_sidebar('home-block-one'))
@else
{{ __('About Pressbooks', 'pressbooks-aldine')}}
{{ __('Pressbooks is easy-to-use book writing software that lets you create a book in all the formats you need to publish.', 'pressbooks-aldine')}}
@endif
@if(is_active_sidebar('home-block-two'))
@php(dynamic_sidebar('home-block-two'))
@endif
@if(is_active_sidebar('home-block-one') && is_active_sidebar('home-block-two'))
@endif
@if(is_active_sidebar('home-block-three'))
@php(dynamic_sidebar('home-block-three'))
@endif
@if(is_active_sidebar('home-block-four'))
@php(dynamic_sidebar('home-block-four'))
@endif
@if(is_active_sidebar('home-block-five'))
@php(dynamic_sidebar('home-block-five'))
@endif
@endsection