summaryrefslogtreecommitdiff
path: root/Views/Shared/_Layout.cshtml
blob: 037fd105ac0b974419904bf4c44d142fe4c8a8fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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" />
    <link href="/lib/fancyapps-ui/fancybox.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">&copy; My Darling underwear 2023</div>
    </footer>
    <script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
    <script src="/lib/fancyapps-ui/fancybox.umd.js"></script>
    <script src="/js/scripts.js"></script>
</body>

</html>