From bd7d7d5fbb142f21b3d89c394f0def8b836b272f Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Fri, 28 Nov 2025 09:21:54 +0100 Subject: [PATCH] Fixed html lang is static --- src/Views/Shared/_Layout.cshtml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Views/Shared/_Layout.cshtml b/src/Views/Shared/_Layout.cshtml index 554d24f..5b72f8b 100644 --- a/src/Views/Shared/_Layout.cshtml +++ b/src/Views/Shared/_Layout.cshtml @@ -1,11 +1,13 @@ @using Microsoft.AspNetCore.Mvc.Localization @using System.Security.Claims +@using System.Globalization + @inject IViewLocalizer T @{ bool IsAuthenticated = User.Identity?.IsAuthenticated ?? false; } - +