the browser-facing portion of osu!
at master 20 lines 714 B 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 6<ul class="game-mode"> 7 @foreach (App\Models\Beatmap::MODES as $ruleset => $_rulesetId) 8 <li> 9 <a 10 class="{{ class_with_modifiers('game-mode-link', ['active' => $ruleset === $currentRuleset]) }}" 11 href="{{ $urlFn($ruleset) }}" 12 > 13 <span 14 class="fal fa-extra-mode-{{ $ruleset }}" 15 title="{{ osu_trans("beatmaps.mode.{$ruleset}") }}" 16 ></span> 17 </a> 18 </li> 19 @endforeach 20</ul>