diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 7ae317b6b..bce7c31bf 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -1,4 +1,5 @@ +@auth @@ -8,7 +9,7 @@ - {{ $title ?? config('app.name', 'Laravel') }} + {{ $title ?? config('app.name', 'Pixelfed') }} @@ -36,11 +37,10 @@ - + @include('layouts.partial.nav')
@yield('content') - @if(Auth::check()) - @endif
@include('layouts.partial.footer') @@ -56,7 +55,6 @@ @stack('scripts') - @if(Auth::check())
@@ -79,6 +77,48 @@
- @endif +@endauth + +@guest + + + + + + + + {{ $title ?? config('app.name', 'Pixelfed') }} + + + + + + + @stack('meta') + + + + + + + + + + @stack('styles') + + + @include('layouts.partial.nav') +
+ @yield('content') +
+ @include('layouts.partial.footer') + + + + + @stack('scripts') + + +@endguest