diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-21 15:34:24 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-12 10:24:53 +0100 |
| commit | 661cccc2da9a6c32b7b56c60313787282a9084ea (patch) | |
| tree | 8176720aa99b80281a8351ae74170238c50b59cc /src/Costasdev.Busurbano.ServiceViewer/Views/Shared | |
| parent | ed023a4b5ee257c0c367357b6d83f9778e2cf536 (diff) | |
Begin implementing
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> |
