Files
delphistudio-website/cerimoniere-website-source/layouts/partials/palco.html
Alessio Molinaro a6f764245d First Commit
Setup repo and website
2024-11-21 09:29:25 +01:00

28 lines
875 B
HTML

{{ $data := index .Site.Data .Site.Language.Lang }}
{{ if $data.homepage.products.enable }}
<section class="gallery" id="products">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2>{{ $data.homepage.products.title | markdownify }}</h2>
</div>
<div class="product-slider">
{{ range (where .Site.RegularPages "Section" "products") }}
<div class="block">
<div class="gallery-overlay">
<a href="{{ .Permalink }}" class="gallery-popup">
<i class="tf-ion-android-open"></i>
</a>
</div>
<img class="img-fluid" src="{{range first 1 .Params.images}}{{.|absURL}}{{end}}" alt="{{.Title}}">
</div>
{{ end }}
</div>
</div>
</div>
</div>
</section>
{{ end }}