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

product-list-item.html « partials « layouts - github.com/kishaningithub/hugo-shopping-product-catalogue-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbad048e69fe7eff8eab771fab2ad58da2593bb8 (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="img-fluid text-center" src="{{ .Params.thumbnailImage }}" />
    <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>