Welcome to mirror list, hosted at ThFree Co, Russian Federation.

product-list-item.html « list « products « partials « layouts - github.com/kishaningithub/hugo-shopping-product-catalogue-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a8e8e30efca83e4a107fea95bf929c115d2e7e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
<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>