@model LoginViewModel @{ string logoPath = "/images/logo-blue.svg"; // If we are using a CDN, let's replace it if (Config.UseCdn) { if (!string.IsNullOrEmpty(Config.CdnHost)) { logoPath = Config.CdnHost.TrimEnd('/') + logoPath; } } } @if (Config.UserConfig.LoginEnabled) {