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.
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="block block-one">
|
|
|
|
@php(dynamic_sidebar('home-block-one'))
|
|
|
|
</div>
|
|
|
|
<div class="block block-two">
|
|
|
|
@php(dynamic_sidebar('home-block-two'))
|
|
|
|
</div>
|
|
|
|
<div class="block block-three">
|
|
|
|
@php(dynamic_sidebar('home-block-three'))
|
|
|
|
</div>
|
|
|
|
<div class="block block-four">
|
|
|
|
@php(dynamic_sidebar('home-block-four'))
|
|
|
|
</div>
|
|
|
|
<div class="block block-five">
|
|
|
|
@php(dynamic_sidebar('home-block-five'))
|
|
|
|
</div>
|
|
|
|
@endsection
|