From ef2fbe73cc0be9be6a50f688a6c1e444f3f6a09e Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Mon, 21 Sep 2020 22:41:09 -0400 Subject: - Performance: Lighten CSS using MVP instead of bootstrap --- laravel/resources/views/song.blade.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'laravel/resources/views/song.blade.php') diff --git a/laravel/resources/views/song.blade.php b/laravel/resources/views/song.blade.php index 6871a91..5fdc847 100644 --- a/laravel/resources/views/song.blade.php +++ b/laravel/resources/views/song.blade.php @@ -6,21 +6,21 @@
@if( isset( $back ) ) $back, 'playlist' => $playlist ?? ''])}}'> - {{$back->name}} + {{$back->name}} @endif @if( $playlist ?? FALSE) $playlist->name])}}'> - Back to {{$playlist->name}} + Back to {{$playlist->name}} @else - Go home + Go home @endif @if( isset( $next ) ) @endif
@@ -61,10 +61,10 @@ - @foreach (['G','D','C'] as $possibleKey) + @foreach (['G','D','C','A'] as $possibleKey) @if($possibleKey != ($_GET['transp'] ?? $song->key))
- +
@endif @@ -78,10 +78,10 @@ @foreach ($suggestions as $sug)
- $sug, 'from' => $song, 'playlist' => $playlist ?? ''])}}'>{{$sug->name}} + $sug, 'from' => $song, 'playlist' => $playlist ?? ''])}}'>{{$sug->name}} @if ($key && $sug->key) $sug, 'from' => $song, 'key' => $key, 'playlist' => $playlist ?? ''])}}'> - transposed to {{$key}} + transposed to {{$key}} @endif
-- cgit 1.4.1