templates for self-hosting game jams (or any other kind of jam tbh)
at main 211 B view raw
1@extends('layouts.app') 2 3@section('content') 4 @while(have_posts()) @php(the_post()) 5 @include('partials.page-header') 6 @includeFirst(['partials.content-page', 'partials.content']) 7 @endwhile 8@endsection