hugo-shopping-product-catal.../layouts/products/single.html

27 lines
827 B
HTML
Raw Normal View History

2018-05-12 08:44:45 +02:00
{{ define "main" }}
<header>
<h1 class="text-center">{{ .Site.Title }}</h1>
</header>
<article class="container-fluid">
<div class="row">
<div class="col-12">
2018-05-12 12:28:56 +02:00
{{ partial "products/common/site-main-nav.html" . }}
2018-05-12 08:44:45 +02:00
</div>
</div>
<div class="row d-block d-md-none">
<div class="col-sm-12">
2018-05-12 12:28:56 +02:00
{{ partial "products/single/product-single-heading.html" . }}
2018-05-12 08:44:45 +02:00
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6">
{{ range .Params.images }}
2018-05-12 12:28:56 +02:00
<img class="img-fluid text-center" src="{{ . }}" />
{{ end }}
2018-05-12 08:44:45 +02:00
</div>
2018-05-12 12:28:56 +02:00
<div class="col-sm-12 col-md-6 d-sm-none d-md-block">
{{ partial "products/single/product-single-heading.html" . }}
2018-05-12 08:44:45 +02:00
</div>
</div>
</article>
2018-05-12 12:28:56 +02:00
{{ end }}