templates for self-hosting game jams (or any other kind of jam tbh)
at main 292 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, but the page you are trying to view does not exist.', 'sage') !!} 9 </x-alert> 10 11 {!! get_search_form(false) !!} 12 @endif 13@endsection