diff options
-rw-r--r-- | Views/Shared/_Layout.cshtml | 6 | ||||
-rw-r--r-- | libman.json | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml index 037fd10..9be9441 100644 --- a/Views/Shared/_Layout.cshtml +++ b/Views/Shared/_Layout.cshtml @@ -8,9 +8,9 @@ <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" /> + <script src="/lib/font-awesome/js/all.js"></script> <link href="/lib/fancyapps-ui/fancybox.css" rel="stylesheet" /> + <link href="/css/styles.css" rel="stylesheet" /> </head> <body id="page-top"> @@ -18,7 +18,7 @@ <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="lib/bootstrap/js/bootstrap.bundle.min.js"></script> + <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> diff --git a/libman.json b/libman.json index bcf6e8f..7ba7b9a 100644 --- a/libman.json +++ b/libman.json @@ -9,6 +9,10 @@ { "library": "bootstrap@5.1.3", "destination": "wwwroot\\lib\\bootstrap" + }, + { + "library": "font-awesome@6.3.0", + "destination": "wwwroot\\lib\\font-awesome" } ] }
\ No newline at end of file |