diff options
Diffstat (limited to 'src/Costasdev.Busurbano.ServiceViewer/Views/Shared')
| -rw-r--r-- | src/Costasdev.Busurbano.ServiceViewer/Views/Shared/_Layout.cshtml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Costasdev.Busurbano.ServiceViewer/Views/Shared/_Layout.cshtml b/src/Costasdev.Busurbano.ServiceViewer/Views/Shared/_Layout.cshtml new file mode 100644 index 0000000..88d5b83 --- /dev/null +++ b/src/Costasdev.Busurbano.ServiceViewer/Views/Shared/_Layout.cshtml @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="es"> +<head> + <meta charset="UTF-8"> + + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta rel="robots" content="noindex, nofollow"> + + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <title>@ViewData["Title"] - VentaSync</title> + + <link rel="stylesheet" href="https://fonts.bunny.net/css?family=inter:300,400,700"> + <link rel="stylesheet" href="~/styles/common.css" /> + @await RenderSectionAsync("Head", required: false) +</head> + +<body> + +@RenderBody() +</body> +</html> |
