the browser-facing portion of osu!
at master 40 lines 1.4 kB view raw
1{{-- 2 Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 3 See the LICENCE file in the repository root for full licence text. 4--}} 5@extends('master') 6 7@section('content') 8 @include('admin._header') 9 <div class="osu-page osu-page--admin"> 10 <h2 class="title">{{ osu_trans('admin.pages.root.sections.general') }}</h2> 11 <ul> 12 <li> 13 <a href="{{ route('admin.logs.index') }}"> 14 {{ osu_trans('admin.logs.index.title') }} 15 </a> 16 </li> 17 <li> 18 <a href="{{ route('admin.contests.index') }}">Contests</a> 19 </li> 20 </ul> 21 22 <h2 class="title">{{ osu_trans('admin.pages.root.sections.forum') }}</h2> 23 <ul> 24 <li> 25 <a href="{{ route('admin.forum.forum-covers.index') }}"> 26 {{ osu_trans('admin.forum.forum-covers.index.title') }} 27 </a> 28 </li> 29 </ul> 30 31 <h2 class="title">{{ osu_trans('admin.pages.root.sections.users.header') }}</h2> 32 <ul> 33 <li> 34 <a href="{{ route('user-cover-presets.store') }}"> 35 {{ osu_trans('admin.pages.root.sections.users.cover_presets') }} 36 </a> 37 </li> 38 </ul> 39 </div> 40@endsection