hugo-shopping-product-catal.../layouts/partials/products/list/product-list-item.html

11 lines
561 B
HTML

<a class="col-6 col-lg-3" href="{{ .RelPermalink }}" style="color: inherit;">
<img class="b-lazy img-fluid text-center" data-src="{{ .Params.thumbnailImage }}" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" />
<p class="text-left">
<span style="font-size: 13px">{{ .Params.title }}</span>
<br/>
<span style="font-size: 16px">
{{ .Params.actualPrice }} {{ if not .Params.inStock }}
<span class="font-weight-bold">— Sold Out</span> {{ end }}
</span>
</p>
</a>