diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-06 21:32:40 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-07 08:02:07 +0300 |
commit | b86579ea3f7524a0c64e1f8b40f4c7cf313f6886 (patch) | |
tree | d5d0cb5beb07983cd07c3ae8dde55f28347929e4 /Views/Shared/_Layout.cshtml | |
parent | a2314e870e1f3f966e45532984e3c76a430334af (diff) |
Add base carousel
Diffstat (limited to 'Views/Shared/_Layout.cshtml')
-rw-r--r-- | Views/Shared/_Layout.cshtml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml new file mode 100644 index 0000000..e685f8d --- /dev/null +++ b/Views/Shared/_Layout.cshtml @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="ru-RU"> + +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> + <meta name="description" content="" /> + <meta name="author" content="" /> + <title>Grayscale - Start Bootstrap Theme</title> + <link rel="icon" type="image/x-icon" href="/assets/favicon.ico" /> + <script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script> + <link href="/css/styles.css" rel="stylesheet" /> +</head> + +<body id="page-top"> + @RenderBody() + <footer class="footer bg-black small text-center text-white-50"> + <div class="container px-4 px-lg-5">© My Darling underwear 2023</div> + </footer> + <script src="/js/scripts.js"></script> + <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> + <script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js"></script> + <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js"></script> +</body> + +</html>
\ No newline at end of file |