clem-website/layouts/partials/items.html
2025-02-25 16:36:05 +01:00

12 lines
No EOL
374 B
HTML

<!-- Items -->
<section class="wrapper style1 color3 align-center">
<div class="inner">
{{ with .title }}<h2>{{ . }}</h2>{{ end }}
{{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
<div class="items {{ .style }}">
{{ range .items }}
{{ partial "item" . }}
{{ end }}
</div>
</div>
</section>