Files
AlquilaFacil/Aspnet/Views/Shared/_basicLayout.cshtml
2024-09-09 23:27:50 -03:00

15 lines
522 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/htmx.org@2.0.2"></script>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/AlquilaFacil.styles.css" asp-append-version="true" />
</head>
<body class="bg-dark-subtle">
@RenderBody()
</body>
</html>