index.blade.php 497 B

1234567891011121314151617181920212223
  1. @extends('layouts.app')
  2. @section('content')
  3. @include('partials.page-header')
  4. @if (! have_posts())
  5. <x-alert type="warning">
  6. {!! __('Sorry, no results were found.', 'sage') !!}
  7. </x-alert>
  8. {!! get_search_form(false) !!}
  9. @endif
  10. @while(have_posts()) @php(the_post())
  11. @includeFirst(['partials.content-' . get_post_type(), 'partials.content'])
  12. @endwhile
  13. {!! get_the_posts_navigation() !!}
  14. @endsection
  15. @section('sidebar')
  16. @include('sections.sidebar')
  17. @endsection