diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-14 06:46:48 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-14 06:46:48 +0300 |
commit | e02af80b646ea4436abc1f46cc01ec72172a77e6 (patch) | |
tree | f75136019bebbb59f7efec23184622f9ba06affc | |
parent | f1b62d6a555e313c3896dec341fcede9b8ce273c (diff) |
Move to local bootstrap
-rw-r--r-- | Views/Shared/_Layout.cshtml | 5 | ||||
-rw-r--r-- | libman.json | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml index d834178..037fd10 100644 --- a/Views/Shared/_Layout.cshtml +++ b/Views/Shared/_Layout.cshtml @@ -18,10 +18,9 @@ <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="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> - <script src="https://cdn.jsdelivr.net/npm/bs5-lightbox@1.8.3/dist/index.bundle.min.js"></script> - <script src="/js/scripts.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> </html>
\ No newline at end of file diff --git a/libman.json b/libman.json index fee38e5..bcf6e8f 100644 --- a/libman.json +++ b/libman.json @@ -5,6 +5,10 @@ { "library": "fancyapps-ui@4.0.31", "destination": "wwwroot\\lib\\fancyapps-ui" + }, + { + "library": "bootstrap@5.1.3", + "destination": "wwwroot\\lib\\bootstrap" } ] }
\ No newline at end of file |