Add base carousel
This commit is contained in:
parent
e0085417df
commit
29478524c7
@ -1,4 +1,5 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
using MyDarling.Models;
|
using MyDarling.Models;
|
||||||
|
|
||||||
namespace MyDarling.Controllers
|
namespace MyDarling.Controllers
|
||||||
@ -10,9 +11,9 @@ namespace MyDarling.Controllers
|
|||||||
{
|
{
|
||||||
this.context = context;
|
this.context = context;
|
||||||
}
|
}
|
||||||
public async Task<IActionResult> Show(int id)
|
public IActionResult Show(int id)
|
||||||
{
|
{
|
||||||
return View(await context.UnderwearBundles.FindAsync(id));
|
return View(context.UnderwearBundles.Include(x => x.Figures).Where(x => x.Id == id).FirstOrDefault());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,14 +1,62 @@
|
|||||||
<!DOCTYPE html>
|
@model MyDarling.Models.UnderwearBundle;
|
||||||
|
@{
|
||||||
<html>
|
Layout = "_Layout";
|
||||||
|
}
|
||||||
<head>
|
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-black" id="mainNav">
|
||||||
<title>@Model?.Name</title>
|
<div class="container px-4 px-lg-5">
|
||||||
</head>
|
<a class="navbar-brand" href="/"><img height="40" src="/assets/img/logo.svg"></a>
|
||||||
|
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse"
|
||||||
<body>
|
data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
|
||||||
<p>@Model?.Name</p>
|
aria-label="Toggle navigation">
|
||||||
<p>@Model?.Description</p>
|
Menu
|
||||||
</body>
|
<i class="fas fa-bars"></i>
|
||||||
|
</button>
|
||||||
</html>
|
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||||
|
<ul class="navbar-nav ms-auto">
|
||||||
|
<li class="nav-item"><a class="nav-link" href="/Home/Index#about">About</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="/Home/Index#projects">Projects</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="/Home/Index#signup">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<section class="projects-section bg-light">
|
||||||
|
<div class="container px-3 px-lg-4 mt-4">
|
||||||
|
<div class="row gx-4 gx-lg-5 justify-content-center ">
|
||||||
|
<div class="col-md">
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
<div class="col-md">
|
||||||
|
<h1 class="mb-4">@Model?.Name</h1>
|
||||||
|
<p class="projects-section">@Model?.Description</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
@ -1,24 +1,10 @@
|
|||||||
@model IQueryable<MyDarling.Models.UnderwearBundle>;
|
@model IQueryable<MyDarling.Models.UnderwearBundle>;
|
||||||
|
@{
|
||||||
<!DOCTYPE html>
|
Layout = "_Layout";
|
||||||
<html lang="ru-RU">
|
}
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="author" content="" />
|
|
||||||
<title>Grayscale - Start Bootstrap Theme</title>
|
|
||||||
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
|
||||||
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
|
|
||||||
<link href="/css/styles.css" rel="stylesheet" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body id="page-top">
|
|
||||||
<!-- Navigation-->
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
|
|
||||||
<div class="container px-4 px-lg-5">
|
<div class="container px-4 px-lg-5">
|
||||||
<a class="navbar-brand" href="#page-top"><img height="40" src="assets/img/logo.svg"></a>
|
<a class="navbar-brand" href="#page-top"><img height="40" src="/assets/img/logo.svg"></a>
|
||||||
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse"
|
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse"
|
||||||
data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
|
data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
|
||||||
aria-label="Toggle navigation">
|
aria-label="Toggle navigation">
|
||||||
@ -27,15 +13,15 @@
|
|||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||||
<ul class="navbar-nav ms-auto">
|
<ul class="navbar-nav ms-auto">
|
||||||
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
|
<li class="nav-item"><a class="nav-link" href="/Home/Index#about">About</a></li>
|
||||||
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
|
<li class="nav-item"><a class="nav-link" href="/Home/Index#projects">Projects</a></li>
|
||||||
<li class="nav-item"><a class="nav-link" href="#signup">Contact</a></li>
|
<li class="nav-item"><a class="nav-link" href="/Home/Index#signup">Contact</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<!-- Masthead-->
|
<!-- Masthead-->
|
||||||
<header class="masthead">
|
<section class="masthead">
|
||||||
<div class="container px-4 px-lg-5 d-flex h-100 align-items-center justify-content-center">
|
<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="d-flex justify-content-center">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
@ -46,9 +32,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</section>
|
||||||
<!-- About-->
|
<!-- About-->
|
||||||
<section class="about-section text-center" id="about">
|
<section class="about-section text-center" id="about">
|
||||||
<div class="container px-4 px-lg-5">
|
<div class="container px-4 px-lg-5">
|
||||||
<div class="row gx-4 gx-lg-5 justify-content-center">
|
<div class="row gx-4 gx-lg-5 justify-content-center">
|
||||||
<div class="col-lg-8">
|
<div class="col-lg-8">
|
||||||
@ -63,16 +49,17 @@
|
|||||||
</div>
|
</div>
|
||||||
<img class="img-fluid" src="assets/img/ipad.png" alt="..." />
|
<img class="img-fluid" src="assets/img/ipad.png" alt="..." />
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- Projects-->
|
<!-- Projects-->
|
||||||
<section class="projects-section bg-light" id="projects">
|
<section class="projects-section bg-light" id="projects">
|
||||||
<div class="container px-3 px-lg-4 mt-4">
|
<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">
|
<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)
|
@foreach (var bundle in @Model)
|
||||||
{
|
{
|
||||||
<div class="col mb-5">
|
<div class="col mb-5">
|
||||||
<div class="card h-100">
|
<div class="card h-100">
|
||||||
<a href="/bundle/show/@bundle.Id"><img class="card-img-top" src="@bundle.Figures.FirstOrDefault()?.FilePath" alt="..." /></a>
|
<a href="/bundle/show/@bundle.Id"><img class="card-img-top"
|
||||||
|
src="@bundle.Figures.FirstOrDefault()?.FilePath" alt="..." /></a>
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h5 class="fw-bolder">@bundle.Name</h5>
|
<h5 class="fw-bolder">@bundle.Name</h5>
|
||||||
@ -84,9 +71,9 @@
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- Signup-->
|
<!-- Signup-->
|
||||||
<section class="signup-section" id="signup">
|
<section class="signup-section" id="signup">
|
||||||
<div class="container px-4 px-lg-5">
|
<div class="container px-4 px-lg-5">
|
||||||
<div class="row gx-4 gx-lg-5">
|
<div class="row gx-4 gx-lg-5">
|
||||||
<div class="col-md-10 col-lg-8 mx-auto text-center">
|
<div class="col-md-10 col-lg-8 mx-auto text-center">
|
||||||
@ -136,9 +123,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- Contact-->
|
<!-- Contact-->
|
||||||
<section class="contact-section bg-black">
|
<section class="contact-section bg-black">
|
||||||
<div class="container px-4 px-lg-5">
|
<div class="container px-4 px-lg-5">
|
||||||
<div class="row gx-4 gx-lg-5">
|
<div class="row gx-4 gx-lg-5">
|
||||||
<div class="col-md-4 mb-3 mb-md-0">
|
<div class="col-md-4 mb-3 mb-md-0">
|
||||||
@ -178,15 +165,4 @@
|
|||||||
<a class="mx-2" href="#!"><i class="fab fa-github"></i></a>
|
<a class="mx-2" href="#!"><i class="fab fa-github"></i></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- Footer-->
|
|
||||||
<footer class="footer bg-black small text-center text-white-50">
|
|
||||||
<div class="container px-4 px-lg-5">Copyright © Your Website 2022</div>
|
|
||||||
</footer>
|
|
||||||
<!-- Bootstrap core JS-->
|
|
||||||
<script src="/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
||||||
<!-- Core theme JS-->
|
|
||||||
<script src="/js/scripts.js"></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
26
Views/Shared/_Layout.cshtml
Normal file
26
Views/Shared/_Layout.cshtml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="ru-RU">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="author" content="" />
|
||||||
|
<title>Grayscale - Start Bootstrap Theme</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
|
||||||
|
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
|
||||||
|
<link href="/css/styles.css" rel="stylesheet" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body id="page-top">
|
||||||
|
@RenderBody()
|
||||||
|
<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="/js/scripts.js"></script>
|
||||||
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -1,10 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"defaultProvider": "cdnjs",
|
"defaultProvider": "cdnjs",
|
||||||
"libraries": [
|
"libraries": []
|
||||||
{
|
|
||||||
"library": "bootstrap@5.2.3",
|
|
||||||
"destination": "wwwroot/lib/bootstrap"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user