summaryrefslogtreecommitdiff
path: root/Views/Home/_Projects.cshtml
blob: 314a9f0c5ea27593f7c68cdb4eb3093827c4e45f (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
27
28
29
@model MyDarling.Models.IRepository;
@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.Bundles.Where(b => b.Price != 0))
            {
                <div class="col mb-5">
                    <div class="card h-100">
                        <a data-src="@bundle.Figures.FirstOrDefault()?.FilePath" data-fancybox="@bundle.Id"
                            data-caption="@bundle.Description"><img class="card-img-top"
                                src="@bundle.Figures.FirstOrDefault()?.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"></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>