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

single.html « products « layouts - github.com/kishaningithub/hugo-shopping-product-catalogue-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7b8c2fef2a90f637af1f7f2131e4b4f555fdc37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ define "main" }}
<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 d-block d-md-none">
        <div class="col-sm-12">
            {{ partial "products/single/product-single-heading.html" . }} 
        </div>
    </div>
    <div class="row">
        <div class="col-sm-12 col-md-6">
            {{ range .Params.images }}
            <img class="img-fluid text-center" src="{{ . }}" /> 
            {{ end }}
        </div>
        <div class="col-sm-12 col-md-6 d-sm-none d-md-block">
            {{ partial "products/single/product-single-heading.html" . }} 
            <p>{{ .Content }}</p>
        </div>
    </div>
</article>
{{ end }}