index.blade.php 524 B

12345678910111213141516171819202122232425
  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. Test de texte hardcoded
  14. {!! get_the_posts_navigation() !!}
  15. @endsection
  16. @section('sidebar')
  17. @include('sections.sidebar')
  18. @endsection