0
0

View thumbnail image on index page

This commit is contained in:
Sergey Chebotar 2023-06-05 07:08:38 +03:00
parent 14312cb5c6
commit afb8a23588

View File

@ -20,10 +20,11 @@
@{
var figure = product.Figures.First();
var filePath = $"/Content/{product.Id}/{figure.Id}.jpg";
var thumbnailPath = $"/Content/{product.Id}/{figure.Id}_thumb.jpg";
}
<a data-src="@filePath" data-fancybox="@product.Id"
data-caption="@figure.Description"><img class="card-img-top"
src="@filePath" alt="@product.Name" /></a>
src="@thumbnailPath" alt="@product.Name" /></a>
@for (int i = 1; i < product.Figures.Count(); i++)
{
filePath = $"/Content/{product.Id}/{product.Figures[i].Id}.jpg";