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

product-list.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: 42ad9465655560e732904220cdfc6ba6f8b9c4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<header>
    <h1 class="text-center">{{ .Site.Title }}</h1>
</header>
<article class="container-fluid">
    <div class="row">
        <div class="col-12">
            {{ partial "products/common/site-main-nav.html" . }} 
        </div>
    </div>
    <div class="row">
        {{ range .Data.Pages }} 
            {{ partial "products/list/product-list-item.html" . }} 
        {{ end }}
    </div>
</article>