diff options
Diffstat (limited to 'Views/Home')
-rw-r--r-- | Views/Home/Index.cshtml | 11 | ||||
-rw-r--r-- | Views/Home/_About.cshtml | 20 | ||||
-rw-r--r-- | Views/Home/_Masthead.cshtml | 11 | ||||
-rw-r--r-- | Views/Home/_Projects.cshtml | 31 | ||||
-rw-r--r-- | Views/Home/_SignUp.cshtml | 17 |
5 files changed, 0 insertions, 90 deletions
diff --git a/Views/Home/Index.cshtml b/Views/Home/Index.cshtml deleted file mode 100644 index 54ff64d..0000000 --- a/Views/Home/Index.cshtml +++ /dev/null @@ -1,11 +0,0 @@ -@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers - -@{ - Layout = "_Layout"; -} - -<partial name="_Navigation" /> -<partial name="_Masthead" /> -<partial name="_About" /> -<partial name="_Projects" /> -<partial name="_SignUp" />
\ No newline at end of file diff --git a/Views/Home/_About.cshtml b/Views/Home/_About.cshtml deleted file mode 100644 index e7bffcb..0000000 --- a/Views/Home/_About.cshtml +++ /dev/null @@ -1,20 +0,0 @@ -<section class="about-section" id="about"> - <div class="container px-4 px-lg-5"> - <div class="row gx-4 gx-lg-5 justify-content-center"> - <div class="col-lg-8"> - <h5 class="text-white text-center">Шьем с 2017 года.</h5> - <p class="text-white-50 text-center">За 6 лет сшили более трех тысяч изделий и осчастливили более тысячи заказчиц. Станьте следующей обладательницей идеального нижнего белья.</p> - <h5 class="text-white text-center">Что вы получаете, заказывая нижнее белье у нас?</h5> - <ul class="text-white-50"> - <li>Ручная работа. Высокое качество.</li> - <li>Составьте свой комплект лифа, трусиков и аксессуаров из нашего каталога.</li> - <li>Сошьем комплект по вашим меркам. Идеальная посадка.</li> - <li>Сделаем трусики и пояса любого размера. Лифы от 70В/75А до 90В.</li> - </ul> - </div> - </div> - <div class="container px-4 px-lg-5 d-flex h-100 align-items-center "> - <a class="btn btn-primary justify-content-center mx-auto mt-2 mb-5" href="#projects">Посмотреть комплекты</a> - </div> - </div> -</section>
\ No newline at end of file diff --git a/Views/Home/_Masthead.cshtml b/Views/Home/_Masthead.cshtml deleted file mode 100644 index 531a9a1..0000000 --- a/Views/Home/_Masthead.cshtml +++ /dev/null @@ -1,11 +0,0 @@ -<section class="masthead"> - <div class="container px-4 px-lg-5 d-flex h-100 align-items-center justify-content-center"> - <div class="d-flex justify-content-center"> - <div class="text-center"> - <img class="mx-auto my-0" height="140" src="/assets/img/logo.svg" /> - <h2 class="text-white-50 mx-auto mt-2 mb-5">Нижнее бельё ручной работы по индивидуальным меркам</h2> - <a class="btn btn-primary" href="#about">Узнать больше</a> - </div> - </div> - </div> -</section>
\ No newline at end of file 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 diff --git a/Views/Home/_SignUp.cshtml b/Views/Home/_SignUp.cshtml deleted file mode 100644 index 02584f6..0000000 --- a/Views/Home/_SignUp.cshtml +++ /dev/null @@ -1,17 +0,0 @@ -<section class="signup-section" id="signup"> - <div class="container px-4 px-lg-5"> - <div class="row gx-4 gx-lg-5"> - <div class="col-md-10 col-lg-8 mx-auto text-center"> - <i class="far fa-paper-plane fa-2x mb-2 text-white"></i> - <h2 class="text-white mb-5">Сделайте заказ сейчас!</h2> - <div class="social d-flex justify-content-center"> - <a class="mx-2" href="https://instagram.com/my_darling_underwear"><i - class="fab fa-instagram"></i></a> - <a class="mx-2" href="https://vk.com/my_darling_underwear"><i class="fab fa-vk"></i></a> - <a class="mx-2" href="https://t.me/my_darling_underwear"><i class="fab fa-telegram"></i></a> - <a class="mx-2" href="https://wa.me/+79604455258"><i class="fab fa-whatsapp"></i></a> - </div> - </div> - </div> - </div> -</section>
\ No newline at end of file |