enhance(views): Move page section views to a sections directory (#2936)

Co-authored-by: Brandon Nifong <brandon@tendency.me>
This commit is contained in:
Ben Word
2022-01-10 16:00:11 -06:00
committed by GitHub
parent 489fd5af6b
commit 21491ce84f
5 changed files with 3 additions and 3 deletions

View File

@@ -19,5 +19,5 @@
@endsection @endsection
@section('sidebar') @section('sidebar')
@include('partials.sidebar') @include('sections.sidebar')
@endsection @endsection

View File

@@ -2,7 +2,7 @@
{{ __('Skip to content') }} {{ __('Skip to content') }}
</a> </a>
@include('partials.header') @include('sections.header')
<main id="main" class="main"> <main id="main" class="main">
@yield('content') @yield('content')
@@ -14,4 +14,4 @@
</aside> </aside>
@endif @endif
@include('partials.footer') @include('sections.footer')