Sergey Karmanov f323c901ce
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 29s
Настроил cshtml
2023-07-30 12:02:29 +03:00

6 lines
171 B
Plaintext

@{
if(Context.Request.Path.StartsWithSegments("/Admin", StringComparison.OrdinalIgnoreCase))
Layout = "_AdminLayout";
else
Layout = "_Layout";
}