portfolio/layouts/shortcodes/section.html

10 lines
233 B
HTML

{{- $id := .Get "id" -}}
{{- $title := .Get "title" -}}
{{- $body := .Inner -}}
<section{{ with $id }} id="{{ . }}"{{ end }}>
{{- with $title }}
<h2>{{ . }}</h2>
{{- end }}
{{ $body | .Page.RenderString }}
</section>