summaryrefslogtreecommitdiff
path: root/Views/Bundle/Show.cshtml
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-02-10 08:08:07 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-02-10 08:24:08 +0300
commitabe2ba567a141885cd3c9bb64aa915719788719d (patch)
tree5a91862df07911a531e49d863c185dbe730766a3 /Views/Bundle/Show.cshtml
parent3f6a044a383efebc9e29234db34075c93ab6f76c (diff)
Delete bundle controller
Diffstat (limited to 'Views/Bundle/Show.cshtml')
-rw-r--r--Views/Bundle/Show.cshtml43
1 files changed, 0 insertions, 43 deletions
diff --git a/Views/Bundle/Show.cshtml b/Views/Bundle/Show.cshtml
deleted file mode 100644
index e3a49f1..0000000
--- a/Views/Bundle/Show.cshtml
+++ /dev/null
@@ -1,43 +0,0 @@
-@model MyDarling.Models.UnderwearBundle;
-<!DOCTYPE html>
-<html lang="ru-RU">
-
-<head>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css">
-</head>
-
-<body>
- <div id="carouselIndicators" class="carousel slide" data-ride="carousel">
- <ol class="carousel-indicators">
- <li data-target="#carouselIndicators" data-slide-to="0" class="active"></li>
- @for (int i = 1; i < @Model?.Figures.Count(); i++)
- {
- <li data-target="#carouselIndicators" data-slide-to="@i"></li>
- }
- </ol>
- <div class="carousel-inner">
- <div class="carousel-item active">
- <img class="d-block w-100" src="@Model?.Figures[0].FilePath" alt="...">
- </div>
- @for (int i = 1; i < @Model?.Figures.Count(); i++)
- {
- <div class="carousel-item">
- <img class="d-block w-100" src="@Model?.Figures[i].FilePath" alt="...">
- </div>
- }
- </div>
- <a class="carousel-control-prev" href="#carouselIndicators" role="button" data-slide="prev">
- <span class="carousel-control-prev-icon" aria-hidden="true"></span>
- <span class="sr-only">Previous</span>
- </a>
- <a class="carousel-control-next" href="#carouselIndicators" role="button" data-slide="next">
- <span class="carousel-control-next-icon" aria-hidden="true"></span>
- <span class="sr-only">Next</span>
- </a>
- </div>
- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js"></script>
-</body>
-
-</html> \ No newline at end of file