template-custom.blade.php 228 B

123456789101112
  1. {{--
  2. Template Name: Custom Template
  3. --}}
  4. @extends('layouts.app')
  5. @section('content')
  6. @while(have_posts()) @php(the_post())
  7. @include('partials.page-header')
  8. @include('partials.content-page')
  9. @endwhile
  10. @endsection