{{-- Copyright (c) ppy Pty Ltd . Licensed under the GNU Affero General Public License v3.0. See the LICENCE file in the repository root for full licence text. --}} @php $links = [ [ 'url' => route('contests.index'), 'title' => osu_trans('contest.index.nav_title'), ], [ 'url' => $contestMeta->url(), 'title' => $contestMeta->name, ], ]; @endphp @extends('master', [ 'titlePrepend' => $contestMeta->name, 'canonicalUrl' => $contestMeta->url(), ]) @section('content') @include('layout._page_header_v4', ['params' => [ 'links' => $links, 'linksBreadcrumb' => true, 'theme' => 'contests', ]])
{!! img2x([ 'src' => $contestMeta->header_url, 'class' => 'page-image__image', ]) !!}

{{ $contestMeta->name }}

@yield('contest-content')
@endsection