diff options
Diffstat (limited to 'Views/Home/_Projects.cshtml')
-rw-r--r-- | Views/Home/_Projects.cshtml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Views/Home/_Projects.cshtml b/Views/Home/_Projects.cshtml deleted file mode 100644 index 1eb67bc..0000000 --- a/Views/Home/_Projects.cshtml +++ /dev/null @@ -1,31 +0,0 @@ -@model IQueryable<MyDarling.Models.UnderwearBundle>; -@using System.Globalization; - -<section class="projects-section bg-light" id="projects"> - <div class="container px-3 px-lg-4 mt-4"> - <div class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center"> - @foreach (var bundle in @Model.Where(b => b.Price != 0 && b.Figures.Count > 0) - .OrderByDescending(b => b.Id)) - { - <div class="col mb-5"> - <div class="card h-100"> - <a data-src="@bundle.Figures[0].FilePath" data-fancybox="@bundle.Id" - data-caption="@bundle.Figures[0].Description"><img class="card-img-top" - src="@bundle.Figures[0].FilePath" alt="@bundle.Name" /></a> - @for (int i = 1; i < @bundle.Figures.Count(); i++) - { - <a data-src="@bundle.Figures[i].FilePath" data-fancybox="@bundle.Id" - data-caption="@bundle.Figures[i].Description"></a> - } - <div class="card-body p-4"> - <div class="text-center"> - <h5 class="fw-bolder">@bundle.Name</h5> - @String.Format(new CultureInfo("ru-RU"), "{0:C0}", @bundle.Price) - </div> - </div> - </div> - </div> - } - </div> - </div> -</section>
\ No newline at end of file |