Try your search with a different keyword or use * as a wildcard.
@model IList
@using Nop.Core.Domain.Catalog
@if (Model.Count > 0)
{
@T("Products.RecentlyViewedProducts")
@for (var i = 0; i < Model.Count; i++)
{
var product = Model[i];
var picture = product.PictureModels.FirstOrDefault();
-
@if (picture != null && !string.IsNullOrEmpty(picture.ImageUrl))
{
}
@product.Name
}
}