templates for self-hosting game jams (or any other kind of jam tbh)
at main 394 B view raw
1@extends('layouts.app') 2 3@section('content') 4 @include('partials.page-header') 5 6 @if (! have_posts()) 7 <x-alert type="warning"> 8 {!! __('Sorry, no results were found.', 'sage') !!} 9 </x-alert> 10 11 {!! get_search_form(false) !!} 12 @endif 13 14 @while(have_posts()) @php(the_post()) 15 @include('partials.content-search') 16 @endwhile 17 18 {!! get_the_posts_navigation() !!} 19@endsection