forked from Git/hugo-story
1
0
Fork 0
agr.asia/layouts/partials/items.html

12 lines
388 B
HTML
Raw Normal View History

2021-01-31 17:07:19 +01:00
<!-- Items -->
2024-04-19 18:15:40 +02:00
<section class="wrapper style1 align-center" id="management-team">
2021-01-31 17:07:19 +01:00
<div class="inner">
2024-04-19 18:15:40 +02:00
{{ with .title }}<h1>{{ . }}</h1>{{ end }}
2021-01-31 17:07:19 +01:00
{{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
<div class="items {{ .style }}">
{{ range .items }}
{{ partial "item" . }}
{{ end }}
</div>
</div>
</section>