hugo-shopping-product-catal.../layouts/partials/products/list/product-list.html

15 lines
423 B
HTML
Raw Normal View History

2018-05-12 08:44:45 +02:00
<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">
{{ range .Data.Pages.ByPublishDate }}
2018-05-12 12:28:56 +02:00
{{ partial "products/list/product-list-item.html" . }}
2018-05-12 08:44:45 +02:00
{{ end }}
</div>
</article>