From 1597cbba9ce7f9db7d947ca1e775f965715ebcea Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Sun, 18 Jan 2026 15:24:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Fix=20typo=20in=20`seo`?= =?UTF-8?q?=20definition=20and=20refine=20navbar/sidebar=20bindings=20by?= =?UTF-8?q?=20replacing=20inline=20conditionals=20with=20`:current`=20prop?= =?UTF-8?q?erties=20=F0=9F=97=91=EF=B8=8F=20Remove=20unused=20EasyMDE=20as?= =?UTF-8?q?sets=20and=20scripts=20from=20layout=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/layouts/app.blade.php | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index befcf41..4c90c71 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -3,7 +3,7 @@ - {!! seo($seo ?? null) !} + {!! seo($seo ?? null) !!} {{ $title ?? 'Page Title' }} @livewireStyles @@ -11,8 +11,6 @@ @vite(['resources/js/app.js','resources/css/app.css']) @googlefonts - - @include('components.layouts.partials.styles') @fluxAppearance @@ -31,9 +29,9 @@ @if(\App\Support\NostrAuth::check()) - routeIs('association.news') ? 'current' : '' }}>News - routeIs('association.profile') ? 'current' : '' }}>Profil - routeIs('association.projectSupport') ? 'current' : '' }}>Projekt-Unterstützungen + News + Profil + Projekt-Unterstützungen @endif @@ -76,9 +74,9 @@ @if(\App\Support\NostrAuth::check()) - routeIs('association.news') ? 'current' : '' }}>News - routeIs('association.profile') ? 'current' : '' }}>Meine Mitgliedschaft - routeIs('association.projectSupport') ? 'current' : '' }}>Projekt-Unterstützungen + News + Meine Mitgliedschaft + Projekt-Unterstützungen @endif @include('components.layouts.navigation.admin')