From 6738d544caf09fd7a647f89fea4eb984d85bdca8 Mon Sep 17 00:00:00 2001 From: Brett Spaulding Date: Sun, 4 Aug 2024 19:33:52 -0400 Subject: [PATCH] [FIX] Blade layout for download page --- .../resources/views/layouts/public.blade.php | 2 +- .../resources/views/pages/download.blade.php | 60 ++++++++++--------- php/src/routes/web.php | 2 +- 3 files changed, 34 insertions(+), 30 deletions(-) diff --git a/php/src/resources/views/layouts/public.blade.php b/php/src/resources/views/layouts/public.blade.php index 3dc7083..7ac9afc 100644 --- a/php/src/resources/views/layouts/public.blade.php +++ b/php/src/resources/views/layouts/public.blade.php @@ -32,7 +32,7 @@ @include('components.action-menu');
- {{ $slot }} + @yield('content')
diff --git a/php/src/resources/views/pages/download.blade.php b/php/src/resources/views/pages/download.blade.php index 427181b..d36b687 100644 --- a/php/src/resources/views/pages/download.blade.php +++ b/php/src/resources/views/pages/download.blade.php @@ -1,37 +1,41 @@ -
-
-
+@extends('layouts.public') -
- - +@section('content') +
+
+
-
-

Enter an Artist

-
+
+ + - -
-
- +
+

Enter an Artist

+ + +
+
+ +
+
+ + + + Download +
- - - Download -
-
-
+@show diff --git a/php/src/routes/web.php b/php/src/routes/web.php index 67e84cf..bd1c7cf 100644 --- a/php/src/routes/web.php +++ b/php/src/routes/web.php @@ -3,5 +3,5 @@ use Illuminate\Support\Facades\Route; Route::get('/', function () { - return view('index'); + return view('pages.download'); });