mirror of
https://github.com/caressofsteel/hugo-story.git
synced 2024-12-22 01:25:07 +01:00
12 lines
367 B
HTML
12 lines
367 B
HTML
<!-- Items -->
|
|
<section class="wrapper style1 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> |