search.blade.php 394 B

12345678910111213141516171819
  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. @include('partials.content-search')
  12. @endwhile
  13. {!! get_the_posts_navigation() !!}
  14. @endsection